Skip to content
VS Code

NomaCMS MCP Server for VS Code

io.github.nomacms/nomacms-mcp-server

MCP server for NomaCMS. Manage collections, fields, content, assets, and webhooks via AI agents.

client:VS Code transport:stdio runtime:npm

Install NomaCMS MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "noma-api-key",
      "description": "NOMA_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "noma-project-id",
      "description": "NOMA_PROJECT_ID",
      "password": true
    }
  ],
  "servers": {
    "nomacms-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@nomacms/mcp-server"
      ],
      "env": {
        "NOMA_API_KEY": "${input:noma-api-key}",
        "NOMA_PROJECT_ID": "${input:noma-project-id}"
      }
    }
  }
}

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

NomaCMS MCP Server in other clients