Skip to content
VS Code

mcp server for VS Code

io.github.kontent-ai/mcp-server

Connect to Kontent.ai to manage content, types, taxonomies, and workflows via natural language

client:VS Code transport:stdio runtime:npm

Install mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "kontent-api-key",
      "description": "KONTENT_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "kontent-environment-id",
      "description": "KONTENT_ENVIRONMENT_ID",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@kontent-ai/mcp-server"
      ],
      "env": {
        "KONTENT_API_KEY": "${input:kontent-api-key}",
        "KONTENT_ENVIRONMENT_ID": "${input:kontent-environment-id}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp server in other clients