Skip to content

Commit 4274a1d

Browse files
authored
feat: add Airtable MCP server definition (#23)
* 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 * fix: update server definition (input type 'password' -> 'text' for AIRTABLE_API_KEY) * 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 <maa.ashik00@gmail.com> * fix: use GitHub org as ID domain for community definitions - community.airtable-npx -> domdomegg.airtable-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 f77b784 commit 4274a1d

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": "domdomegg.airtable-mcp-npx",
4+
"name": "Airtable (npx)",
5+
"alias": "airtable",
6+
"description": "Interact with Airtable bases, tables, and records. List schemas, search records, create and update data, and manage comments.",
7+
"icon": "https://avatars.githubusercontent.com/u/4953590?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"database",
11+
"productivity"
12+
],
13+
"tags": [
14+
"airtable",
15+
"database",
16+
"spreadsheet",
17+
"no-code",
18+
"records"
19+
],
20+
"transport": {
21+
"type": "stdio",
22+
"command": "npx",
23+
"args": [
24+
"-y",
25+
"airtable-mcp-server"
26+
],
27+
"env": {
28+
"AIRTABLE_API_KEY": "${input:AIRTABLE_API_KEY}"
29+
},
30+
"metadata": {
31+
"inputs": [
32+
{
33+
"id": "AIRTABLE_API_KEY",
34+
"label": "Airtable Personal Access Token",
35+
"description": "Personal Access Token for the Airtable API. Requires schema.bases:read and data.records:read scopes at minimum.",
36+
"type": "text",
37+
"required": true,
38+
"secret": true,
39+
"placeholder": "patXXXXXXXXXXXXXX.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
40+
"obtain": {
41+
"url": "https://airtable.com/create/tokens",
42+
"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",
43+
"button_label": "Create Token"
44+
}
45+
}
46+
]
47+
}
48+
},
49+
"auth": {
50+
"type": "api_key",
51+
"instructions": "Create a Personal Access Token at https://airtable.com/create/tokens"
52+
},
53+
"contributor": {
54+
"name": "domdomegg",
55+
"github": "domdomegg",
56+
"url": "https://github.com/domdomegg"
57+
},
58+
"links": {
59+
"repository": "https://github.com/domdomegg/airtable-mcp-server",
60+
"homepage": "https://airtable.com",
61+
"documentation": "https://github.com/domdomegg/airtable-mcp-server#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)