FastGPT/projects/mcp_server/package.json
Archer 9d6a48a62f
Some checks failed
Deploy doc image to cf / deploy-production (push) Has been cancelled
Deploy doc image by kubeconfig / build-fastgpt-docs-images (push) Has been cancelled
Build FastGPT images in Personal warehouse / build-fastgpt-images (push) Has been cancelled
Deploy doc image by kubeconfig / update-docs-image (push) Has been cancelled
perf: mcp save raw schema (#5030)
* perf: mcp save raw schema

* fix: test

* code

* perf: json schema test

* perf: mcp
2025-06-13 18:46:55 +08:00

31 lines
698 B
JSON

{
"name": "mcp_server",
"version": "0.1",
"keywords": [],
"author": "fastgpt",
"files": [
"dist"
],
"type": "module",
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"dev": "nodemon --watch src --ext ts,json --exec \"npm run dev:run\"",
"dev:run": "tsc && node dist/index.js",
"mcp_test": "npx @modelcontextprotocol/inspector"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"axios": "^1.8.2",
"chalk": "^5.3.0",
"dayjs": "^1.11.7",
"dotenv": "^16.5.0",
"express": "^4.21.2"
},
"devDependencies": {
"@types/express": "^5.0.1",
"nodemon": "^3.1.9",
"shx": "^0.3.4",
"typescript": "^5.6.2"
}
}