Skip to content

Commit 0f7a899

Browse files
committed
Add Coda MCP server definition
Community Coda MCP server for managing docs, pages, tables, and rows. Uses coda-mcp npm package with stdio transport. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 0217546 commit 0f7a899

1 file changed

Lines changed: 64 additions & 0 deletions

File tree

servers/community.coda.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "community.coda",
4+
"name": "Coda",
5+
"alias": "coda",
6+
"description": "Manage Coda docs, pages, tables, and rows. List documents, read and write table data, and create new pages.",
7+
"icon": "https://avatars.githubusercontent.com/u/32670283?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["productivity", "database"],
10+
"tags": ["coda", "docs", "tables", "spreadsheet", "collaboration"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "coda-mcp@latest"],
16+
"env": {
17+
"API_KEY": "${input:API_KEY}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "API_KEY",
23+
"label": "Coda API Key",
24+
"description": "API token for the Coda platform.",
25+
"type": "password",
26+
"required": true,
27+
"secret": true,
28+
"placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
29+
"obtain": {
30+
"url": "https://coda.io/account",
31+
"instructions": "1. Go to coda.io/account\n2. Scroll to 'API settings'\n3. Click 'Generate API token'\n4. Copy the token",
32+
"button_label": "Generate Token"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "api_key",
41+
"instructions": "Generate an API token at https://coda.io/account"
42+
},
43+
44+
"contributor": {
45+
"name": "orellazri",
46+
"github": "orellazri",
47+
"url": "https://github.com/orellazri"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/orellazri/coda-mcp",
52+
"homepage": "https://coda.io",
53+
"documentation": "https://github.com/orellazri/coda-mcp#readme"
54+
},
55+
56+
"platforms": ["all"],
57+
58+
"capabilities": {
59+
"tools": true,
60+
"resources": false,
61+
"prompts": false,
62+
"read_only_mode": false
63+
}
64+
}

0 commit comments

Comments
 (0)