Skip to content

Commit 407eed6

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

1 file changed

Lines changed: 79 additions & 0 deletions

File tree

servers/com.contentful-mcp.json

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.contentful-mcp",
4+
"name": "Contentful",
5+
"alias": "contentful",
6+
"description": "Manage Contentful spaces, content types, entries, and assets. Create and update structured content through the Content Management API.",
7+
"icon": "https://avatars.githubusercontent.com/u/472182?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["developer-tools", "productivity"],
10+
"tags": ["contentful", "cms", "headless-cms", "content", "api"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@contentful/mcp-server"],
16+
"env": {
17+
"CONTENTFUL_MANAGEMENT_ACCESS_TOKEN": "${input:CONTENTFUL_MANAGEMENT_ACCESS_TOKEN}",
18+
"SPACE_ID": "${input:SPACE_ID}"
19+
},
20+
"metadata": {
21+
"inputs": [
22+
{
23+
"id": "CONTENTFUL_MANAGEMENT_ACCESS_TOKEN",
24+
"label": "Contentful Management Token",
25+
"description": "Content Management API token for your Contentful space.",
26+
"type": "password",
27+
"required": true,
28+
"secret": true,
29+
"placeholder": "CFPAT-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
30+
"obtain": {
31+
"url": "https://app.contentful.com/account/profile/cma_tokens",
32+
"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-)",
33+
"button_label": "Generate Token"
34+
}
35+
},
36+
{
37+
"id": "SPACE_ID",
38+
"label": "Contentful Space ID",
39+
"description": "The ID of the Contentful space to work with.",
40+
"type": "text",
41+
"required": true,
42+
"secret": false,
43+
"placeholder": "xxxxxxxxxxxx",
44+
"obtain": {
45+
"url": "https://app.contentful.com/",
46+
"instructions": "1. Go to app.contentful.com\n2. Open your space\n3. Go to Settings > General settings\n4. Copy the Space ID",
47+
"button_label": "Get Space ID"
48+
}
49+
}
50+
]
51+
}
52+
},
53+
54+
"auth": {
55+
"type": "api_key",
56+
"instructions": "Get a CMA token at https://app.contentful.com/account/profile/cma_tokens"
57+
},
58+
59+
"contributor": {
60+
"name": "Contentful",
61+
"github": "contentful",
62+
"url": "https://www.contentful.com"
63+
},
64+
65+
"links": {
66+
"repository": "https://github.com/contentful/contentful-mcp-server",
67+
"homepage": "https://www.contentful.com",
68+
"documentation": "https://www.contentful.com/developers/docs/"
69+
},
70+
71+
"platforms": ["all"],
72+
73+
"capabilities": {
74+
"tools": true,
75+
"resources": false,
76+
"prompts": false,
77+
"read_only_mode": false
78+
}
79+
}

0 commit comments

Comments
 (0)