Overview
The Kontent.ai MCP Server lets you interact with your Kontent.ai project through the Model Context Protocol (MCP). It provides structured access to both the Management and Delivery APIs, enabling AI tools to read, create, update, and explore your content and content model.
The server supports STDIO and Server-Sent Events (SSE) transports and works with any MCP-compatible client.
Features
-
Access content items, content types, snippets, taxonomies, and assets
-
Create and update content items and language variants
-
Modify content types and taxonomy groups
-
List available languages and environments
-
Retrieve project metadata and schema definitions
How to Use
To use the MCP Server, create a Kontent.ai project, generate a management API key, and set your environment variables with the API key and environment ID before starting the server.
FAQ
Is the Kontent.ai MCP Server free to use?
- Yes, it is open-source under the MIT license.
What programming language is used?
- The server is built with TypeScript.
How can I contribute?
- Fork the repository on GitHub and submit pull requests: kontent-ai/mcp-server.
サーバー設定
{
"mcpServers": {
"kontent-ai-stdio": {
"command": "npx",
"args": [
"@kontent-ai/mcp-server@latest",
"stdio"
],
"env": {
"KONTENT_API_KEY": "<management-api-key>",
"KONTENT_ENVIRONMENT_ID": "<environment-id>"
}
}
}
}