Skip to content

Commit dedb4cb

Browse files
authored
feat: add Netlify MCP server definition (#56)
* Add Netlify MCP server definition Official Netlify MCP server for site deployment, DNS management, and build configuration. Uses @netlify/mcp npm package with stdio transport. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx * fix: update server definition (input type 'password' -> 'text' for NETLIFY_PERSONAL_ACCESS_TOKEN) * fix: rename server files with transport suffix - com.netlify-mcp.json -> com.netlify-mcp-npx.json (id: com.netlify-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 904444c commit dedb4cb

1 file changed

Lines changed: 73 additions & 0 deletions

File tree

servers/com.netlify-mcp-npx.json

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.netlify-mcp-npx",
4+
"name": "Netlify (npx)",
5+
"alias": "netlify",
6+
"description": "Deploy sites, manage DNS, check build status, and configure Netlify projects. Supports site creation, environment variables, and serverless functions.",
7+
"icon": "https://avatars.githubusercontent.com/u/7892489?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"cloud",
11+
"developer-tools"
12+
],
13+
"tags": [
14+
"netlify",
15+
"deployment",
16+
"hosting",
17+
"ci-cd",
18+
"serverless",
19+
"jamstack"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"@netlify/mcp"
27+
],
28+
"env": {
29+
"NETLIFY_PERSONAL_ACCESS_TOKEN": "${input:NETLIFY_PERSONAL_ACCESS_TOKEN}"
30+
},
31+
"metadata": {
32+
"inputs": [
33+
{
34+
"id": "NETLIFY_PERSONAL_ACCESS_TOKEN",
35+
"label": "Netlify Personal Access Token",
36+
"description": "Personal access token for the Netlify API. Optional if using browser-based auth.",
37+
"type": "text",
38+
"required": false,
39+
"secret": true,
40+
"placeholder": "nfp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
41+
"obtain": {
42+
"url": "https://app.netlify.com/user/applications#personal-access-tokens",
43+
"instructions": "1. Go to app.netlify.com > User Settings > Applications\n2. Scroll to Personal Access Tokens\n3. Click 'New access token'\n4. Name your token and click 'Generate token'\n5. Copy the token",
44+
"button_label": "Create Token"
45+
}
46+
}
47+
]
48+
}
49+
},
50+
"auth": {
51+
"type": "optional_api_key",
52+
"instructions": "Optionally provide a Personal Access Token from https://app.netlify.com/user/applications. Without one, browser-based auth may be used."
53+
},
54+
"contributor": {
55+
"name": "Netlify",
56+
"github": "netlify",
57+
"url": "https://www.netlify.com"
58+
},
59+
"links": {
60+
"repository": "https://github.com/netlify/netlify-mcp",
61+
"homepage": "https://www.netlify.com",
62+
"documentation": "https://docs.netlify.com"
63+
},
64+
"platforms": [
65+
"all"
66+
],
67+
"capabilities": {
68+
"tools": true,
69+
"resources": false,
70+
"prompts": false,
71+
"read_only_mode": false
72+
}
73+
}

0 commit comments

Comments
 (0)