Skip to content

Commit 8324a98

Browse files
committed
Add missing MCP servers and Vercel deployment config
- Add Meta Supervisor MCP Server (routing, health checks, GitHub access) - Add Engineering Lead MCP Server (plan, delegate, verify, STOP score) - Add Cloud Assistant MCP Server (execute, report, evidence, git ops) - Update mcp.json with all 9 agent servers - Add Vercel deployment configuration
1 parent 539ad7b commit 8324a98

8 files changed

Lines changed: 1000 additions & 1 deletion

File tree

.cursor/mcp.json

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
{
22
"mcpServers": {
3+
"supervisor": {
4+
"command": "npx",
5+
"args": ["tsx", "packages/supervisor/src/index.ts"],
6+
"cwd": "${workspaceFolder}",
7+
"env": {
8+
"GITHUB_TOKEN": "${env:GITHUB_TOKEN}"
9+
}
10+
},
11+
"engineering-lead": {
12+
"command": "npx",
13+
"args": ["tsx", "packages/engineering-lead/src/index.ts"],
14+
"cwd": "${workspaceFolder}"
15+
},
16+
"cloud-assistant": {
17+
"command": "npx",
18+
"args": ["tsx", "packages/cloud-assistant/src/index.ts"],
19+
"cwd": "${workspaceFolder}",
20+
"env": {
21+
"GITHUB_TOKEN": "${env:GITHUB_TOKEN}"
22+
}
23+
},
324
"memory": {
425
"command": "npx",
526
"args": ["tsx", "packages/memory-server/src/index.ts"],
@@ -18,7 +39,11 @@
1839
"deployment": {
1940
"command": "npx",
2041
"args": ["tsx", "packages/deployment/src/index.ts"],
21-
"cwd": "${workspaceFolder}"
42+
"cwd": "${workspaceFolder}",
43+
"env": {
44+
"VERCEL_TOKEN": "${env:VERCEL_TOKEN}",
45+
"VERCEL_PROJECT_ID": "${env:VERCEL_PROJECT_ID}"
46+
}
2247
},
2348
"monitoring": {
2449
"command": "npx",
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "@cloud-agents/cloud-assistant",
3+
"version": "1.0.0",
4+
"description": "Cloud Assistant - Execute, Report & Evidence",
5+
"type": "module",
6+
"main": "dist/index.js",
7+
"scripts": {
8+
"dev": "tsx watch src/index.ts",
9+
"build": "tsc",
10+
"start": "node dist/index.js"
11+
},
12+
"dependencies": {
13+
"@modelcontextprotocol/sdk": "^0.5.0"
14+
},
15+
"devDependencies": {
16+
"@types/node": "^20.10.0",
17+
"tsx": "^4.6.0",
18+
"typescript": "^5.3.0"
19+
}
20+
}

0 commit comments

Comments
 (0)