Skip to content

Commit 3ed8dac

Browse files
authored
feat: add Coda MCP server definition (#33)
* 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 * fix: update server definition (input type 'password' -> 'text' for API_KEY) * fix: rename server files with transport suffix - community.coda.json -> community.coda-npx.json (id: community.coda-npx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> * fix: use GitHub org as ID domain for community definitions - community.coda-npx -> orellazri.coda-mcp-npx Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 4ece373 commit 3ed8dac

1 file changed

Lines changed: 72 additions & 0 deletions

File tree

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "orellazri.coda-mcp-npx",
4+
"name": "Coda (npx)",
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": [
10+
"productivity",
11+
"database"
12+
],
13+
"tags": [
14+
"coda",
15+
"docs",
16+
"tables",
17+
"spreadsheet",
18+
"collaboration"
19+
],
20+
"transport": {
21+
"type": "stdio",
22+
"command": "npx",
23+
"args": [
24+
"-y",
25+
"coda-mcp@latest"
26+
],
27+
"env": {
28+
"API_KEY": "${input:API_KEY}"
29+
},
30+
"metadata": {
31+
"inputs": [
32+
{
33+
"id": "API_KEY",
34+
"label": "Coda API Key",
35+
"description": "API token for the Coda platform.",
36+
"type": "text",
37+
"required": true,
38+
"secret": true,
39+
"placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
40+
"obtain": {
41+
"url": "https://coda.io/account",
42+
"instructions": "1. Go to coda.io/account\n2. Scroll to 'API settings'\n3. Click 'Generate API token'\n4. Copy the token",
43+
"button_label": "Generate Token"
44+
}
45+
}
46+
]
47+
}
48+
},
49+
"auth": {
50+
"type": "api_key",
51+
"instructions": "Generate an API token at https://coda.io/account"
52+
},
53+
"contributor": {
54+
"name": "orellazri",
55+
"github": "orellazri",
56+
"url": "https://github.com/orellazri"
57+
},
58+
"links": {
59+
"repository": "https://github.com/orellazri/coda-mcp",
60+
"homepage": "https://coda.io",
61+
"documentation": "https://github.com/orellazri/coda-mcp#readme"
62+
},
63+
"platforms": [
64+
"all"
65+
],
66+
"capabilities": {
67+
"tools": true,
68+
"resources": false,
69+
"prompts": false,
70+
"read_only_mode": false
71+
}
72+
}

0 commit comments

Comments
 (0)