Skip to content
VS Code

mcp for VS Code

io.github.luno-cms/mcp

LUNO — AI-era Backend Platform (not Luno crypto). BUILD/OPERATE, REGISTER/GOVERN, CONSUME.

client:VS Code transport:stdio runtime:npm

Install mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "luno-api-url",
      "description": "LUNO_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "luno-agent-key",
      "description": "LUNO_AGENT_KEY",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@luno-cms/mcp"
      ],
      "env": {
        "LUNO_API_URL": "${input:luno-api-url}",
        "LUNO_AGENT_KEY": "${input:luno-agent-key}"
      }
    }
  }
}

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

mcp in other clients