Files
FastGPT/projects/mcp_server/package.json
Archer ca8adbbf95 feat: streamable http mcp (#4695)
* feat: streamable http mcp

* mcp api path

* fix: ts
2025-04-28 12:45:51 +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.10.2",
"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"
}
}