chore: update version number automatically

This commit is contained in:
Marcus Schiesser
2025-06-24 16:00:36 +07:00
committed by Marcus Schiesser
parent 6ba4c5c650
commit 0754b26bd2
2 changed files with 6 additions and 4 deletions
+2 -1
View File
@@ -12,6 +12,7 @@ import {
ListToolsRequestSchema, ListToolsRequestSchema,
} from "@modelcontextprotocol/sdk/types.js"; } from "@modelcontextprotocol/sdk/types.js";
import { LlamaCloudIndex, MetadataMode } from "llamaindex"; import { LlamaCloudIndex, MetadataMode } from "llamaindex";
import packageJson from "../package.json" with { type: "json" };
// Define the tool definition interface // Define the tool definition interface
interface ToolDefinition { interface ToolDefinition {
@@ -82,7 +83,7 @@ function parseToolDefinitions(): ToolDefinition[] {
const server = new Server( const server = new Server(
{ {
name: "llamacloud-mcp-server", name: "llamacloud-mcp-server",
version: "0.1.0", version: packageJson.version,
}, },
{ {
capabilities: { capabilities: {
+4 -3
View File
@@ -1,14 +1,15 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES2022", "target": "ES2022",
"module": "Node16", "module": "NodeNext",
"moduleResolution": "Node16", "moduleResolution": "NodeNext",
"outDir": "./build", "outDir": "./build",
"rootDir": "./src", "rootDir": "./src",
"strict": true, "strict": true,
"esModuleInterop": true, "esModuleInterop": true,
"skipLibCheck": true, "skipLibCheck": true,
"forceConsistentCasingInFileNames": true "forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
}, },
"include": ["src/**/*"], "include": ["src/**/*"],
"exclude": ["node_modules"] "exclude": ["node_modules"]