mirror of
https://github.com/run-llama/mcp-server-llamacloud.git
synced 2026-06-30 20:47:54 -04:00
30 lines
785 B
JSON
30 lines
785 B
JSON
{
|
|
"name": "mcp-server-llamacloud",
|
|
"version": "0.1.0",
|
|
"description": "A MCP server connecting to a managed index on LlamaCloud",
|
|
"license": "MIT",
|
|
"author": "LlamaIndex Inc.",
|
|
"bugs": "https://github.com/run-llama/mcp-server-llamacloud/issues",
|
|
"type": "module",
|
|
"bin": {
|
|
"mcp-server-llamacloud": "./build/index.js"
|
|
},
|
|
"files": [
|
|
"build"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
|
|
"prepare": "npm run build",
|
|
"watch": "tsc --watch",
|
|
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "0.6.0",
|
|
"llamaindex": "0.8.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.9.3",
|
|
"typescript": "^5.6.2"
|
|
}
|
|
}
|