-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsmithery.yaml
41 lines (37 loc) · 1.31 KB
/
smithery.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Smithery.ai configuration
name: "@rashidazarang/airtable-mcp"
version: "1.0.0"
description: "Connect your AI tools directly to Airtable. Query, create, update, and delete records using natural language. Features include base management, table operations, schema manipulation, record filtering, and data migration—all through a standardized MCP interface compatible with Cursor, Claude Code, Cline, Zed, and other Claude-powered editors."
startCommand:
type: stdio
configSchema:
type: object
properties:
airtable_token:
type: string
description: "Your Airtable Personal Access Token"
base_id:
type: string
description: "Your default Airtable base ID (optional)"
required: ["airtable_token"]
commandFunction: |
(config) => {
// Pass config as a JSON string to the inspector_server.py
const configStr = JSON.stringify(config);
return {
command: "python3.10",
args: ["inspector_server.py", "--config", configStr],
env: {}
};
}
listTools:
command: "python3.10"
args: ["inspector.py"]
env: {}
build:
dockerfile: "Dockerfile"
metadata:
author: "Rashid Azarang"
license: "MIT"
repository: "https://github.com/rashidazarang/airtable-mcp"
homepage: "https://github.com/rashidazarang/airtable-mcp#readme"