-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.05 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.05 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
{
"name": "mcp-code-execution-demo",
"version": "1.0.0",
"type": "module",
"description": "MCP code execution demo with GitHub integration",
"scripts": {
"generate-wrappers": "tsx scripts/generate-mcp-wrappers.ts",
"postinstall": "npm run generate-wrappers || echo 'Warning: MCP wrapper generation failed. Run npm run generate-wrappers manually when servers are available.'",
"ensure-wrappers": "tsx scripts/ensure-wrappers.ts",
"start": "tsx agent.ts",
"start:mcp": "tsx agent.ts --mode=direct-mcp",
"start:analyze-results": "tsx agent.ts --task=task-analyze-results.md",
"clear-results": "tsx lib/clear-results.ts",
"zip-results": "tsx lib/zip-results.ts && npm run clear-results -- -y"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.42",
"@anthropic-ai/claude-code": "^2.0.42",
"@modelcontextprotocol/sdk": "^1.22.0",
"dotenv": "^16.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"json-schema-to-typescript": "^15.0.4",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}