cms
Contentful MCP Gateway for AI Agents
Expose Contentful tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.
12 functions 6 read 6 write Bearer token auth
Contentful MCP Gateway
Expose Contentful to MCP clients with `kosmokrator mcp:serve --integration=contentful`.
If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash kosmokrator mcp:gateway:install --integration=contentful --write=deny --json {
"mcpServers": {
"kosmokrator-contentful": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=contentful",
"--write=deny"
]
}
}
} Serve Manually
kosmokrator mcp:serve --integration=contentful --write=deny MCP Tool Names
KosmoKrator exposes integration tools through the gateway with stable names:
MCP Tool Names (12 tools)
| MCP tool | Source function | Type |
|---|---|---|
integration__contentful__contentful_list_content_types | contentful.contentful_list_content_types | Read read |
integration__contentful__contentful_get_content_type | contentful.contentful_get_content_type | Read read |
integration__contentful__contentful_create_content_type | contentful.contentful_create_content_type | Write write |
integration__contentful__contentful_list_entries | contentful.contentful_list_entries | Read read |
integration__contentful__contentful_get_entry | contentful.contentful_get_entry | Read read |
integration__contentful__contentful_create_entry | contentful.contentful_create_entry | Write write |
integration__contentful__contentful_update_entry | contentful.contentful_update_entry | Write write |
integration__contentful__contentful_publish_entry | contentful.contentful_publish_entry | Write write |
integration__contentful__contentful_unpublish_entry | contentful.contentful_unpublish_entry | Write write |
integration__contentful__contentful_delete_entry | contentful.contentful_delete_entry | Write write |
integration__contentful__contentful_list_assets | contentful.contentful_list_assets | Read read |
integration__contentful__contentful_get_space | contentful.contentful_get_space | Read read |
Write Access
Start with --write=deny for read-only MCP clients. Use --write=ask or
--write=allow only when the client and workspace are trusted.