-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.5 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "mcp-agent-server",
"version": "2.0.0",
"description": "MCP Server with agent-powered tools, mountable as Express middleware. Each tool starts an LLM Agent Loop that iteratively uses FlowMCP schema tools to solve problems.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
},
"./a2a": {
"types": "./dist/a2a/index.d.ts",
"default": "./dist/a2a/index.js"
}
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage:src": "vitest run --coverage",
"test:agentprobe": "node tests/manual/agentprobe-test.mjs"
},
"author": "FlowMCP",
"license": "MIT",
"dependencies": {
"@a2a-js/sdk": "^0.3.12",
"@anthropic-ai/sdk": "^0.39.0",
"@modelcontextprotocol/ext-apps": "^1.2.2",
"@modelcontextprotocol/sdk": "^1.26.0",
"express": "^4.21.0",
"flowmcp": "github:FlowMCP/flowmcp-core#9dfacc6459bb9916d95f1df3e8ca3b56926a2fac"
},
"peerDependencies": {
"express": "^4.21.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}