mirror of
https://github.com/run-llama/mcp-server-llamacloud.git
synced 2026-07-01 20:35:21 -04:00
chore: update version number automatically
This commit is contained in:
committed by
Marcus Schiesser
parent
6ba4c5c650
commit
0754b26bd2
+2
-1
@@ -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
@@ -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"]
|
||||||
|
|||||||
Reference in New Issue
Block a user