From ee7c38e5c2c5a320d320f4d4c857a0858f1cbfc2 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 12:47:41 +0000 Subject: [PATCH 1/4] Add Airtable MCP server definition Community Airtable MCP server for managing bases, tables, and records. Uses airtable-mcp-server npm package with stdio transport. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/community.airtable.json | 64 +++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 servers/community.airtable.json diff --git a/servers/community.airtable.json b/servers/community.airtable.json new file mode 100644 index 0000000..ac7a134 --- /dev/null +++ b/servers/community.airtable.json @@ -0,0 +1,64 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "community.airtable", + "name": "Airtable", + "alias": "airtable", + "description": "Interact with Airtable bases, tables, and records. List schemas, search records, create and update data, and manage comments.", + "icon": "https://avatars.githubusercontent.com/u/4953590?v=4", + "schema_version": "2.1", + "categories": ["database", "productivity"], + "tags": ["airtable", "database", "spreadsheet", "no-code", "records"], + + "transport": { + "type": "stdio", + "command": "npx", + "args": ["-y", "airtable-mcp-server"], + "env": { + "AIRTABLE_API_KEY": "${input:AIRTABLE_API_KEY}" + }, + "metadata": { + "inputs": [ + { + "id": "AIRTABLE_API_KEY", + "label": "Airtable Personal Access Token", + "description": "Personal Access Token for the Airtable API. Requires schema.bases:read and data.records:read scopes at minimum.", + "type": "password", + "required": true, + "secret": true, + "placeholder": "patXXXXXXXXXXXXXX.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "obtain": { + "url": "https://airtable.com/create/tokens", + "instructions": "1. Go to airtable.com/create/tokens\n2. Click '+ Create new token'\n3. Add scopes: schema.bases:read, data.records:read (and write scopes if needed)\n4. Select which bases the token can access\n5. Click 'Create token' and copy it", + "button_label": "Create Token" + } + } + ] + } + }, + + "auth": { + "type": "api_key", + "instructions": "Create a Personal Access Token at https://airtable.com/create/tokens" + }, + + "contributor": { + "name": "domdomegg", + "github": "domdomegg", + "url": "https://github.com/domdomegg" + }, + + "links": { + "repository": "https://github.com/domdomegg/airtable-mcp-server", + "homepage": "https://airtable.com", + "documentation": "https://github.com/domdomegg/airtable-mcp-server#readme" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 54402dcafee65b267bf8bde4ef8303293da2a471 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:08:08 +0800 Subject: [PATCH 2/4] fix: update server definition (input type 'password' -> 'text' for AIRTABLE_API_KEY) --- servers/community.airtable.json | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/servers/community.airtable.json b/servers/community.airtable.json index ac7a134..beb57d1 100644 --- a/servers/community.airtable.json +++ b/servers/community.airtable.json @@ -6,13 +6,24 @@ "description": "Interact with Airtable bases, tables, and records. List schemas, search records, create and update data, and manage comments.", "icon": "https://avatars.githubusercontent.com/u/4953590?v=4", "schema_version": "2.1", - "categories": ["database", "productivity"], - "tags": ["airtable", "database", "spreadsheet", "no-code", "records"], - + "categories": [ + "database", + "productivity" + ], + "tags": [ + "airtable", + "database", + "spreadsheet", + "no-code", + "records" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "airtable-mcp-server"], + "args": [ + "-y", + "airtable-mcp-server" + ], "env": { "AIRTABLE_API_KEY": "${input:AIRTABLE_API_KEY}" }, @@ -22,7 +33,7 @@ "id": "AIRTABLE_API_KEY", "label": "Airtable Personal Access Token", "description": "Personal Access Token for the Airtable API. Requires schema.bases:read and data.records:read scopes at minimum.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "patXXXXXXXXXXXXXX.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", @@ -35,26 +46,23 @@ ] } }, - "auth": { "type": "api_key", "instructions": "Create a Personal Access Token at https://airtable.com/create/tokens" }, - "contributor": { "name": "domdomegg", "github": "domdomegg", "url": "https://github.com/domdomegg" }, - "links": { "repository": "https://github.com/domdomegg/airtable-mcp-server", "homepage": "https://airtable.com", "documentation": "https://github.com/domdomegg/airtable-mcp-server#readme" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From f3083b8945c77a425dc94303833b66cf69dd39c6 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:43:46 +0800 Subject: [PATCH 3/4] fix: rename server files with transport suffix - community.airtable.json -> community.airtable-npx.json (id: community.airtable-npx) Signed-off-by: Mohammod Al Amin Ashik --- .../{community.airtable.json => community.airtable-npx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{community.airtable.json => community.airtable-npx.json} (97%) diff --git a/servers/community.airtable.json b/servers/community.airtable-npx.json similarity index 97% rename from servers/community.airtable.json rename to servers/community.airtable-npx.json index beb57d1..08af696 100644 --- a/servers/community.airtable.json +++ b/servers/community.airtable-npx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "community.airtable", - "name": "Airtable", + "id": "community.airtable-npx", + "name": "Airtable (npx)", "alias": "airtable", "description": "Interact with Airtable bases, tables, and records. List schemas, search records, create and update data, and manage comments.", "icon": "https://avatars.githubusercontent.com/u/4953590?v=4", From 57cc080fb39f9a77a38529cedab8e47e424fcd83 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:47:15 +0800 Subject: [PATCH 4/4] fix: use GitHub org as ID domain for community definitions - community.airtable-npx -> domdomegg.airtable-mcp-npx Signed-off-by: Mohammod Al Amin Ashik --- ...munity.airtable-npx.json => domdomegg.airtable-mcp-npx.json} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename servers/{community.airtable-npx.json => domdomegg.airtable-mcp-npx.json} (98%) diff --git a/servers/community.airtable-npx.json b/servers/domdomegg.airtable-mcp-npx.json similarity index 98% rename from servers/community.airtable-npx.json rename to servers/domdomegg.airtable-mcp-npx.json index 08af696..3639006 100644 --- a/servers/community.airtable-npx.json +++ b/servers/domdomegg.airtable-mcp-npx.json @@ -1,6 +1,6 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "community.airtable-npx", + "id": "domdomegg.airtable-mcp-npx", "name": "Airtable (npx)", "alias": "airtable", "description": "Interact with Airtable bases, tables, and records. List schemas, search records, create and update data, and manage comments.",