From 0f7a8997cddb0cef08241a4344a97b3c6c44fe65 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 13:40:15 +0000 Subject: [PATCH 1/4] 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 --- servers/community.coda.json | 64 +++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 servers/community.coda.json diff --git a/servers/community.coda.json b/servers/community.coda.json new file mode 100644 index 0000000..739f099 --- /dev/null +++ b/servers/community.coda.json @@ -0,0 +1,64 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "community.coda", + "name": "Coda", + "alias": "coda", + "description": "Manage Coda docs, pages, tables, and rows. List documents, read and write table data, and create new pages.", + "icon": "https://avatars.githubusercontent.com/u/32670283?v=4", + "schema_version": "2.1", + "categories": ["productivity", "database"], + "tags": ["coda", "docs", "tables", "spreadsheet", "collaboration"], + + "transport": { + "type": "stdio", + "command": "npx", + "args": ["-y", "coda-mcp@latest"], + "env": { + "API_KEY": "${input:API_KEY}" + }, + "metadata": { + "inputs": [ + { + "id": "API_KEY", + "label": "Coda API Key", + "description": "API token for the Coda platform.", + "type": "password", + "required": true, + "secret": true, + "placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", + "obtain": { + "url": "https://coda.io/account", + "instructions": "1. Go to coda.io/account\n2. Scroll to 'API settings'\n3. Click 'Generate API token'\n4. Copy the token", + "button_label": "Generate Token" + } + } + ] + } + }, + + "auth": { + "type": "api_key", + "instructions": "Generate an API token at https://coda.io/account" + }, + + "contributor": { + "name": "orellazri", + "github": "orellazri", + "url": "https://github.com/orellazri" + }, + + "links": { + "repository": "https://github.com/orellazri/coda-mcp", + "homepage": "https://coda.io", + "documentation": "https://github.com/orellazri/coda-mcp#readme" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 2063cbceda0011658387c0ab3c11cd8b2e818921 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:08:41 +0800 Subject: [PATCH 2/4] fix: update server definition (input type 'password' -> 'text' for API_KEY) --- servers/community.coda.json | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/servers/community.coda.json b/servers/community.coda.json index 739f099..99e6d13 100644 --- a/servers/community.coda.json +++ b/servers/community.coda.json @@ -6,13 +6,24 @@ "description": "Manage Coda docs, pages, tables, and rows. List documents, read and write table data, and create new pages.", "icon": "https://avatars.githubusercontent.com/u/32670283?v=4", "schema_version": "2.1", - "categories": ["productivity", "database"], - "tags": ["coda", "docs", "tables", "spreadsheet", "collaboration"], - + "categories": [ + "productivity", + "database" + ], + "tags": [ + "coda", + "docs", + "tables", + "spreadsheet", + "collaboration" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "coda-mcp@latest"], + "args": [ + "-y", + "coda-mcp@latest" + ], "env": { "API_KEY": "${input:API_KEY}" }, @@ -22,7 +33,7 @@ "id": "API_KEY", "label": "Coda API Key", "description": "API token for the Coda platform.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", @@ -35,26 +46,23 @@ ] } }, - "auth": { "type": "api_key", "instructions": "Generate an API token at https://coda.io/account" }, - "contributor": { "name": "orellazri", "github": "orellazri", "url": "https://github.com/orellazri" }, - "links": { "repository": "https://github.com/orellazri/coda-mcp", "homepage": "https://coda.io", "documentation": "https://github.com/orellazri/coda-mcp#readme" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From dbc3980d0abc158c7d119e25854a3f8f8551390f Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:44:08 +0800 Subject: [PATCH 3/4] 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 --- servers/{community.coda.json => community.coda-npx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{community.coda.json => community.coda-npx.json} (97%) diff --git a/servers/community.coda.json b/servers/community.coda-npx.json similarity index 97% rename from servers/community.coda.json rename to servers/community.coda-npx.json index 99e6d13..4e8f560 100644 --- a/servers/community.coda.json +++ b/servers/community.coda-npx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "community.coda", - "name": "Coda", + "id": "community.coda-npx", + "name": "Coda (npx)", "alias": "coda", "description": "Manage Coda docs, pages, tables, and rows. List documents, read and write table data, and create new pages.", "icon": "https://avatars.githubusercontent.com/u/32670283?v=4", From 089c3d5d68bbf085dbbae0b6c87b0f7cfdf0ba64 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:47:22 +0800 Subject: [PATCH 4/4] fix: use GitHub org as ID domain for community definitions - community.coda-npx -> orellazri.coda-mcp-npx Signed-off-by: Mohammod Al Amin Ashik --- .../{community.coda-npx.json => orellazri.coda-mcp-npx.json} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename servers/{community.coda-npx.json => orellazri.coda-mcp-npx.json} (98%) diff --git a/servers/community.coda-npx.json b/servers/orellazri.coda-mcp-npx.json similarity index 98% rename from servers/community.coda-npx.json rename to servers/orellazri.coda-mcp-npx.json index 4e8f560..984b608 100644 --- a/servers/community.coda-npx.json +++ b/servers/orellazri.coda-mcp-npx.json @@ -1,6 +1,6 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "community.coda-npx", + "id": "orellazri.coda-mcp-npx", "name": "Coda (npx)", "alias": "coda", "description": "Manage Coda docs, pages, tables, and rows. List documents, read and write table data, and create new pages.",