Skip to content

Commit 54402dc

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for AIRTABLE_API_KEY)
1 parent ee7c38e commit 54402dc

1 file changed

Lines changed: 19 additions & 11 deletions

File tree

servers/community.airtable.json

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,24 @@
66
"description": "Interact with Airtable bases, tables, and records. List schemas, search records, create and update data, and manage comments.",
77
"icon": "https://avatars.githubusercontent.com/u/4953590?v=4",
88
"schema_version": "2.1",
9-
"categories": ["database", "productivity"],
10-
"tags": ["airtable", "database", "spreadsheet", "no-code", "records"],
11-
9+
"categories": [
10+
"database",
11+
"productivity"
12+
],
13+
"tags": [
14+
"airtable",
15+
"database",
16+
"spreadsheet",
17+
"no-code",
18+
"records"
19+
],
1220
"transport": {
1321
"type": "stdio",
1422
"command": "npx",
15-
"args": ["-y", "airtable-mcp-server"],
23+
"args": [
24+
"-y",
25+
"airtable-mcp-server"
26+
],
1627
"env": {
1728
"AIRTABLE_API_KEY": "${input:AIRTABLE_API_KEY}"
1829
},
@@ -22,7 +33,7 @@
2233
"id": "AIRTABLE_API_KEY",
2334
"label": "Airtable Personal Access Token",
2435
"description": "Personal Access Token for the Airtable API. Requires schema.bases:read and data.records:read scopes at minimum.",
25-
"type": "password",
36+
"type": "text",
2637
"required": true,
2738
"secret": true,
2839
"placeholder": "patXXXXXXXXXXXXXX.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
@@ -35,26 +46,23 @@
3546
]
3647
}
3748
},
38-
3949
"auth": {
4050
"type": "api_key",
4151
"instructions": "Create a Personal Access Token at https://airtable.com/create/tokens"
4252
},
43-
4453
"contributor": {
4554
"name": "domdomegg",
4655
"github": "domdomegg",
4756
"url": "https://github.com/domdomegg"
4857
},
49-
5058
"links": {
5159
"repository": "https://github.com/domdomegg/airtable-mcp-server",
5260
"homepage": "https://airtable.com",
5361
"documentation": "https://github.com/domdomegg/airtable-mcp-server#readme"
5462
},
55-
56-
"platforms": ["all"],
57-
63+
"platforms": [
64+
"all"
65+
],
5866
"capabilities": {
5967
"tools": true,
6068
"resources": false,

0 commit comments

Comments
 (0)