From 407eed69fbab1daeacbb498d4b0039687c6a967c Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 13:20:36 +0000 Subject: [PATCH 1/3] Add Contentful MCP server definition Official Contentful MCP server for managing spaces, content types, entries, and assets. Uses @contentful/mcp-server npm package with stdio transport. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/com.contentful-mcp.json | 79 +++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 servers/com.contentful-mcp.json diff --git a/servers/com.contentful-mcp.json b/servers/com.contentful-mcp.json new file mode 100644 index 0000000..8273899 --- /dev/null +++ b/servers/com.contentful-mcp.json @@ -0,0 +1,79 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.contentful-mcp", + "name": "Contentful", + "alias": "contentful", + "description": "Manage Contentful spaces, content types, entries, and assets. Create and update structured content through the Content Management API.", + "icon": "https://avatars.githubusercontent.com/u/472182?v=4", + "schema_version": "2.1", + "categories": ["developer-tools", "productivity"], + "tags": ["contentful", "cms", "headless-cms", "content", "api"], + + "transport": { + "type": "stdio", + "command": "npx", + "args": ["-y", "@contentful/mcp-server"], + "env": { + "CONTENTFUL_MANAGEMENT_ACCESS_TOKEN": "${input:CONTENTFUL_MANAGEMENT_ACCESS_TOKEN}", + "SPACE_ID": "${input:SPACE_ID}" + }, + "metadata": { + "inputs": [ + { + "id": "CONTENTFUL_MANAGEMENT_ACCESS_TOKEN", + "label": "Contentful Management Token", + "description": "Content Management API token for your Contentful space.", + "type": "password", + "required": true, + "secret": true, + "placeholder": "CFPAT-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "obtain": { + "url": "https://app.contentful.com/account/profile/cma_tokens", + "instructions": "1. Go to app.contentful.com > Settings > CMA Tokens\n2. Click 'Generate personal token'\n3. Name your token and click 'Generate'\n4. Copy the token (starts with CFPAT-)", + "button_label": "Generate Token" + } + }, + { + "id": "SPACE_ID", + "label": "Contentful Space ID", + "description": "The ID of the Contentful space to work with.", + "type": "text", + "required": true, + "secret": false, + "placeholder": "xxxxxxxxxxxx", + "obtain": { + "url": "https://app.contentful.com/", + "instructions": "1. Go to app.contentful.com\n2. Open your space\n3. Go to Settings > General settings\n4. Copy the Space ID", + "button_label": "Get Space ID" + } + } + ] + } + }, + + "auth": { + "type": "api_key", + "instructions": "Get a CMA token at https://app.contentful.com/account/profile/cma_tokens" + }, + + "contributor": { + "name": "Contentful", + "github": "contentful", + "url": "https://www.contentful.com" + }, + + "links": { + "repository": "https://github.com/contentful/contentful-mcp-server", + "homepage": "https://www.contentful.com", + "documentation": "https://www.contentful.com/developers/docs/" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 695441be3f934bac011e3ade6842ddda479f6767 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:08:48 +0800 Subject: [PATCH 2/3] fix: update server definition (input type 'password' -> 'text' for CONTENTFUL_MANAGEMENT_ACCESS_TOKEN) --- servers/com.contentful-mcp.json | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/servers/com.contentful-mcp.json b/servers/com.contentful-mcp.json index 8273899..e585c84 100644 --- a/servers/com.contentful-mcp.json +++ b/servers/com.contentful-mcp.json @@ -6,13 +6,24 @@ "description": "Manage Contentful spaces, content types, entries, and assets. Create and update structured content through the Content Management API.", "icon": "https://avatars.githubusercontent.com/u/472182?v=4", "schema_version": "2.1", - "categories": ["developer-tools", "productivity"], - "tags": ["contentful", "cms", "headless-cms", "content", "api"], - + "categories": [ + "developer-tools", + "productivity" + ], + "tags": [ + "contentful", + "cms", + "headless-cms", + "content", + "api" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "@contentful/mcp-server"], + "args": [ + "-y", + "@contentful/mcp-server" + ], "env": { "CONTENTFUL_MANAGEMENT_ACCESS_TOKEN": "${input:CONTENTFUL_MANAGEMENT_ACCESS_TOKEN}", "SPACE_ID": "${input:SPACE_ID}" @@ -23,7 +34,7 @@ "id": "CONTENTFUL_MANAGEMENT_ACCESS_TOKEN", "label": "Contentful Management Token", "description": "Content Management API token for your Contentful space.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "CFPAT-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", @@ -50,26 +61,23 @@ ] } }, - "auth": { "type": "api_key", "instructions": "Get a CMA token at https://app.contentful.com/account/profile/cma_tokens" }, - "contributor": { "name": "Contentful", "github": "contentful", "url": "https://www.contentful.com" }, - "links": { "repository": "https://github.com/contentful/contentful-mcp-server", "homepage": "https://www.contentful.com", "documentation": "https://www.contentful.com/developers/docs/" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From 4dead01f073928272f229cab1faa1b5bd3d67db7 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:44:14 +0800 Subject: [PATCH 3/3] fix: rename server files with transport suffix - com.contentful-mcp.json -> com.contentful-mcp-npx.json (id: com.contentful-mcp-npx) Signed-off-by: Mohammod Al Amin Ashik --- .../{com.contentful-mcp.json => com.contentful-mcp-npx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{com.contentful-mcp.json => com.contentful-mcp-npx.json} (97%) diff --git a/servers/com.contentful-mcp.json b/servers/com.contentful-mcp-npx.json similarity index 97% rename from servers/com.contentful-mcp.json rename to servers/com.contentful-mcp-npx.json index e585c84..e34066e 100644 --- a/servers/com.contentful-mcp.json +++ b/servers/com.contentful-mcp-npx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "com.contentful-mcp", - "name": "Contentful", + "id": "com.contentful-mcp-npx", + "name": "Contentful (npx)", "alias": "contentful", "description": "Manage Contentful spaces, content types, entries, and assets. Create and update structured content through the Content Management API.", "icon": "https://avatars.githubusercontent.com/u/472182?v=4",