Skip to content

Commit 22bc7f5

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for NETLIFY_PERSONAL_ACCESS_TOKEN)
1 parent aa3e91c commit 22bc7f5

1 file changed

Lines changed: 20 additions & 11 deletions

File tree

servers/com.netlify-mcp.json

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,25 @@
66
"description": "Deploy sites, manage DNS, check build status, and configure Netlify projects. Supports site creation, environment variables, and serverless functions.",
77
"icon": "https://avatars.githubusercontent.com/u/7892489?v=4",
88
"schema_version": "2.1",
9-
"categories": ["cloud", "developer-tools"],
10-
"tags": ["netlify", "deployment", "hosting", "ci-cd", "serverless", "jamstack"],
11-
9+
"categories": [
10+
"cloud",
11+
"developer-tools"
12+
],
13+
"tags": [
14+
"netlify",
15+
"deployment",
16+
"hosting",
17+
"ci-cd",
18+
"serverless",
19+
"jamstack"
20+
],
1221
"transport": {
1322
"type": "stdio",
1423
"command": "npx",
15-
"args": ["-y", "@netlify/mcp"],
24+
"args": [
25+
"-y",
26+
"@netlify/mcp"
27+
],
1628
"env": {
1729
"NETLIFY_PERSONAL_ACCESS_TOKEN": "${input:NETLIFY_PERSONAL_ACCESS_TOKEN}"
1830
},
@@ -22,7 +34,7 @@
2234
"id": "NETLIFY_PERSONAL_ACCESS_TOKEN",
2335
"label": "Netlify Personal Access Token",
2436
"description": "Personal access token for the Netlify API. Optional if using browser-based auth.",
25-
"type": "password",
37+
"type": "text",
2638
"required": false,
2739
"secret": true,
2840
"placeholder": "nfp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
@@ -35,26 +47,23 @@
3547
]
3648
}
3749
},
38-
3950
"auth": {
4051
"type": "optional_api_key",
4152
"instructions": "Optionally provide a Personal Access Token from https://app.netlify.com/user/applications. Without one, browser-based auth may be used."
4253
},
43-
4454
"contributor": {
4555
"name": "Netlify",
4656
"github": "netlify",
4757
"url": "https://www.netlify.com"
4858
},
49-
5059
"links": {
5160
"repository": "https://github.com/netlify/netlify-mcp",
5261
"homepage": "https://www.netlify.com",
5362
"documentation": "https://docs.netlify.com"
5463
},
55-
56-
"platforms": ["all"],
57-
64+
"platforms": [
65+
"all"
66+
],
5867
"capabilities": {
5968
"tools": true,
6069
"resources": false,

0 commit comments

Comments
 (0)