Skip to content

Commit aa3e91c

Browse files
committed
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
1 parent 0217546 commit aa3e91c

1 file changed

Lines changed: 64 additions & 0 deletions

File tree

servers/com.netlify-mcp.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": "com.netlify-mcp",
4+
"name": "Netlify",
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": ["cloud", "developer-tools"],
10+
"tags": ["netlify", "deployment", "hosting", "ci-cd", "serverless", "jamstack"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@netlify/mcp"],
16+
"env": {
17+
"NETLIFY_PERSONAL_ACCESS_TOKEN": "${input:NETLIFY_PERSONAL_ACCESS_TOKEN}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "NETLIFY_PERSONAL_ACCESS_TOKEN",
23+
"label": "Netlify Personal Access Token",
24+
"description": "Personal access token for the Netlify API. Optional if using browser-based auth.",
25+
"type": "password",
26+
"required": false,
27+
"secret": true,
28+
"placeholder": "nfp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
29+
"obtain": {
30+
"url": "https://app.netlify.com/user/applications#personal-access-tokens",
31+
"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",
32+
"button_label": "Create Token"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "optional_api_key",
41+
"instructions": "Optionally provide a Personal Access Token from https://app.netlify.com/user/applications. Without one, browser-based auth may be used."
42+
},
43+
44+
"contributor": {
45+
"name": "Netlify",
46+
"github": "netlify",
47+
"url": "https://www.netlify.com"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/netlify/netlify-mcp",
52+
"homepage": "https://www.netlify.com",
53+
"documentation": "https://docs.netlify.com"
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)