送信

Kontent.ai MCP Server

@kontent-ai

The Kontent.ai MCP Server allows you to interact with your Kontent.ai project using the Model Context Protocol (MCP). It provides structured access to both the Delivery and Management APIs, making it possible for AI-enabled tools to read and write content, inspect content types, and explore the project structure. This server supports both STDIO and Server-Sent Events (SSE) transports and is compatible with any client or tool that implements MCP.
概要

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?

サーバー設定

{
  "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>"
      }
    }
  }
}