Skip to content

Commit 0e2354e

Browse files
committed
πŸ§‘β€πŸ’» agents: add digitalocean and figma mcp servers
1 parent 0de398e commit 0e2354e

3 files changed

Lines changed: 17 additions & 3 deletions

File tree

β€Ž.codex/config.tomlβ€Ž

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
1+
[mcp_servers.do-apps]
2+
url = "https://apps.mcp.digitalocean.com/mcp"
3+
[mcp_servers.do-databases]
4+
url = "https://databases.mcp.digitalocean.com/mcp"
5+
16
[mcp_servers.eslint]
27
command = "npx"
38
args = ["@eslint/mcp"]
49

510
[mcp_servers.expo]
611
url = "https://mcp.expo.dev/mcp"
712

13+
[mcp_servers.figma]
14+
url = "https://mcp.figma.com/mcp"
15+
816
[mcp_servers.maestro]
917
command = "maestro"
1018
args = ["mcp"]

β€Ž.gemini/settings.jsonβ€Ž

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,20 @@
33
"general": {
44
"checkpointing": { "enabled": true },
55
"enablePromptCompletion": true,
6-
"preferredEditor": "antigravity",
7-
"previewFeatures": true
6+
"preferredEditor": "antigravity"
87
},
98
"mcpServers": {
9+
"do-apps": { "type":"http", "url": "https://apps.mcp.digitalocean.com/mcp" },
10+
"do-databases": { "type":"http", "url": "https://databases.mcp.digitalocean.com/mcp" },
1011
"eslint": { "command": "npx", "args": ["@eslint/mcp"] },
12+
"expo": { "type": "http", "url": "https://mcp.expo.dev/mcp" },
13+
"figma": { "type": "http", "url": "https://mcp.figma.com/mcp" },
1114
"maestro": { "command": "maestro", "args": ["mcp"] },
1215
"nx": { "command": "npx", "args": ["nx", "mcp"] },
1316
"sentry": { "url": "https://mcp.sentry.dev/mcp" }
1417
},
1518
"privacy": { "usageStatisticsEnabled": false },
1619
"telemetry": { "enabled": false },
17-
"tools": { "autoAccept": true, "sandbox": true },
20+
"tools": { "sandbox": true },
1821
"$schema": "https://raw.githubusercontent.com/google-gemini/gemini-cli/main/schemas/settings.schema.json"
1922
}

β€Ž.mcp.jsonβ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"mcpServers": {
3+
"do-apps": { "type": "http", "url": "https://apps.mcp.digitalocean.com/mcp" },
4+
"do-databases": { "type": "http", "url": "https://databases.mcp.digitalocean.com/mcp" },
35
"eslint": { "type": "stdio", "command": "npx", "args": ["@eslint/mcp"] },
46
"expo": { "type": "http", "url": "https://mcp.expo.dev/mcp" },
7+
"figma": { "type": "http", "url": "https://mcp.figma.com/mcp" },
58
"maestro": { "type": "stdio", "command": "maestro", "args": ["mcp"] },
69
"nx": { "type": "stdio", "command": "npx", "args": ["nx", "mcp"] },
710
"sentry": { "type": "http", "url": "https://mcp.sentry.dev/mcp" }

0 commit comments

Comments
Β (0)