mirror of
https://github.com/labring/FastGPT.git
synced 2026-04-23 01:01:19 +08:00
7a6601394d
* doc * feat: Pause Recovery (#6494) * feat: Pause Recovery * agent pause * agent pause * fix:agent pause * fix:agent pause * perf: pause agent call * fix: test --------- Co-authored-by: archer <545436317@qq.com> * fix: image read and json error (Agent) (#6502) * fix: 1.image read 2.JSON parsing error * dataset cite and pause * perf: plancall second parse * add test --------- Co-authored-by: archer <545436317@qq.com> * master message * remove invalid code * fix: pause agent (#6595) * fix: ask and step result * delete console * udpate pnpm version * prettier --------- Co-authored-by: YeYuheng <57035043+YYH211@users.noreply.github.com>
33 lines
739 B
JSON
33 lines
739 B
JSON
{
|
|
"name": "mcp_server",
|
|
"version": "0.1",
|
|
"keywords": [],
|
|
"author": "fastgpt",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "bun build src/index.ts --outdir=dist --target=node && chmod +x dist/index.js",
|
|
"dev": "bun --watch src/index.ts",
|
|
"start": "bun src/index.ts",
|
|
"mcp_test": "npx @modelcontextprotocol/inspector"
|
|
},
|
|
"engines": {
|
|
"node": ">=20",
|
|
"pnpm": "9.x"
|
|
},
|
|
"dependencies": {
|
|
"@fastgpt/global": "workspace:*",
|
|
"@fastgpt-sdk/logger": "catalog:",
|
|
"@modelcontextprotocol/sdk": "catalog:",
|
|
"chalk": "^5.3.0",
|
|
"dayjs": "catalog:",
|
|
"dotenv": "^16.5.0",
|
|
"express": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^5.0.1"
|
|
}
|
|
}
|