mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 20:37:48 +00:00
31 lines
698 B
JSON
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"
|
|
}
|
|
}
|