Skip to content

Commit 214ef0a

Browse files
claudeits-mash
authored andcommitted
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
1 parent 0217546 commit 214ef0a

1 file changed

Lines changed: 64 additions & 0 deletions

File tree

servers/community.airtable.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.airtable",
4+
"name": "Airtable",
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": ["database", "productivity"],
10+
"tags": ["airtable", "database", "spreadsheet", "no-code", "records"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "airtable-mcp-server"],
16+
"env": {
17+
"AIRTABLE_API_KEY": "${input:AIRTABLE_API_KEY}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "AIRTABLE_API_KEY",
23+
"label": "Airtable Personal Access Token",
24+
"description": "Personal Access Token for the Airtable API. Requires schema.bases:read and data.records:read scopes at minimum.",
25+
"type": "password",
26+
"required": true,
27+
"secret": true,
28+
"placeholder": "patXXXXXXXXXXXXXX.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
29+
"obtain": {
30+
"url": "https://airtable.com/create/tokens",
31+
"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",
32+
"button_label": "Create Token"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "api_key",
41+
"instructions": "Create a Personal Access Token at https://airtable.com/create/tokens"
42+
},
43+
44+
"contributor": {
45+
"name": "domdomegg",
46+
"github": "domdomegg",
47+
"url": "https://github.com/domdomegg"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/domdomegg/airtable-mcp-server",
52+
"homepage": "https://airtable.com",
53+
"documentation": "https://github.com/domdomegg/airtable-mcp-server#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)