From aa3e91c01e5b4220fab69e81a7ab128d957c1b71 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 13:14:11 +0000 Subject: [PATCH 1/3] 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 --- servers/com.netlify-mcp.json | 64 ++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 servers/com.netlify-mcp.json diff --git a/servers/com.netlify-mcp.json b/servers/com.netlify-mcp.json new file mode 100644 index 0000000..fba7686 --- /dev/null +++ b/servers/com.netlify-mcp.json @@ -0,0 +1,64 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.netlify-mcp", + "name": "Netlify", + "alias": "netlify", + "description": "Deploy sites, manage DNS, check build status, and configure Netlify projects. Supports site creation, environment variables, and serverless functions.", + "icon": "https://avatars.githubusercontent.com/u/7892489?v=4", + "schema_version": "2.1", + "categories": ["cloud", "developer-tools"], + "tags": ["netlify", "deployment", "hosting", "ci-cd", "serverless", "jamstack"], + + "transport": { + "type": "stdio", + "command": "npx", + "args": ["-y", "@netlify/mcp"], + "env": { + "NETLIFY_PERSONAL_ACCESS_TOKEN": "${input:NETLIFY_PERSONAL_ACCESS_TOKEN}" + }, + "metadata": { + "inputs": [ + { + "id": "NETLIFY_PERSONAL_ACCESS_TOKEN", + "label": "Netlify Personal Access Token", + "description": "Personal access token for the Netlify API. Optional if using browser-based auth.", + "type": "password", + "required": false, + "secret": true, + "placeholder": "nfp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "obtain": { + "url": "https://app.netlify.com/user/applications#personal-access-tokens", + "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", + "button_label": "Create Token" + } + } + ] + } + }, + + "auth": { + "type": "optional_api_key", + "instructions": "Optionally provide a Personal Access Token from https://app.netlify.com/user/applications. Without one, browser-based auth may be used." + }, + + "contributor": { + "name": "Netlify", + "github": "netlify", + "url": "https://www.netlify.com" + }, + + "links": { + "repository": "https://github.com/netlify/netlify-mcp", + "homepage": "https://www.netlify.com", + "documentation": "https://docs.netlify.com" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 22bc7f5683c006bb35c5350e7f452ec37917558d Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:09:58 +0800 Subject: [PATCH 2/3] fix: update server definition (input type 'password' -> 'text' for NETLIFY_PERSONAL_ACCESS_TOKEN) --- servers/com.netlify-mcp.json | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/servers/com.netlify-mcp.json b/servers/com.netlify-mcp.json index fba7686..8851f97 100644 --- a/servers/com.netlify-mcp.json +++ b/servers/com.netlify-mcp.json @@ -6,13 +6,25 @@ "description": "Deploy sites, manage DNS, check build status, and configure Netlify projects. Supports site creation, environment variables, and serverless functions.", "icon": "https://avatars.githubusercontent.com/u/7892489?v=4", "schema_version": "2.1", - "categories": ["cloud", "developer-tools"], - "tags": ["netlify", "deployment", "hosting", "ci-cd", "serverless", "jamstack"], - + "categories": [ + "cloud", + "developer-tools" + ], + "tags": [ + "netlify", + "deployment", + "hosting", + "ci-cd", + "serverless", + "jamstack" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "@netlify/mcp"], + "args": [ + "-y", + "@netlify/mcp" + ], "env": { "NETLIFY_PERSONAL_ACCESS_TOKEN": "${input:NETLIFY_PERSONAL_ACCESS_TOKEN}" }, @@ -22,7 +34,7 @@ "id": "NETLIFY_PERSONAL_ACCESS_TOKEN", "label": "Netlify Personal Access Token", "description": "Personal access token for the Netlify API. Optional if using browser-based auth.", - "type": "password", + "type": "text", "required": false, "secret": true, "placeholder": "nfp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", @@ -35,26 +47,23 @@ ] } }, - "auth": { "type": "optional_api_key", "instructions": "Optionally provide a Personal Access Token from https://app.netlify.com/user/applications. Without one, browser-based auth may be used." }, - "contributor": { "name": "Netlify", "github": "netlify", "url": "https://www.netlify.com" }, - "links": { "repository": "https://github.com/netlify/netlify-mcp", "homepage": "https://www.netlify.com", "documentation": "https://docs.netlify.com" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From 9fcf408cee156eab254269442b64d35f076c1e33 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:45:06 +0800 Subject: [PATCH 3/3] 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 --- servers/{com.netlify-mcp.json => com.netlify-mcp-npx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{com.netlify-mcp.json => com.netlify-mcp-npx.json} (97%) diff --git a/servers/com.netlify-mcp.json b/servers/com.netlify-mcp-npx.json similarity index 97% rename from servers/com.netlify-mcp.json rename to servers/com.netlify-mcp-npx.json index 8851f97..e8765db 100644 --- a/servers/com.netlify-mcp.json +++ b/servers/com.netlify-mcp-npx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "com.netlify-mcp", - "name": "Netlify", + "id": "com.netlify-mcp-npx", + "name": "Netlify (npx)", "alias": "netlify", "description": "Deploy sites, manage DNS, check build status, and configure Netlify projects. Supports site creation, environment variables, and serverless functions.", "icon": "https://avatars.githubusercontent.com/u/7892489?v=4",