# Contentful — MCP server on mcp.ai > Contentful is a headless CMS allowing developers to create, manage, and distribute content across multiple channels and devices with an API-first approach By: mcp.ai · official Page: https://mcp.ai/contentful ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_contentful?ms=1781542320000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/contentful/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/contentful/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/contentful/skill.md Postman collection (v2.1): https://mcp.ai/contentful/postman.json ## Tools - contentful_get_space(space_id: string) — Retrieves details of a specific space by its id. this action is used to get information about a single space in contentful. - contentful_list_spaces(skip?: integer, limit?: integer, order?: string) — Lists all spaces that the authenticated user has access to in contentful. this is a fundamental operation needed before performing any other content management actions since most operations require a - contentful_update_space(name: string, version: integer, space_id: string) — Updates the name of a specific space. notes: - the version number is required to ensure you're updating the latest version of the space. - you can get the current version from the sys.version field wh ## Links Docs: https://mcp.ai/docs/mcps/contentful Website: https://mcp.ai/mcps/contentful