Skip to content
VS Code

esa mcp server for VS Code

io.github.koki-develop/esa-mcp-server

A Model Context Protocol (MCP) server for esa.io

client:VS Code transport:stdio runtime:npm

Install esa mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "esa-team",
      "description": "ESA_TEAM",
      "password": true
    },
    {
      "type": "promptString",
      "id": "esa-access-token",
      "description": "ESA_ACCESS_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "esa-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@koki-develop/esa-mcp-server"
      ],
      "env": {
        "ESA_TEAM": "${input:esa-team}",
        "ESA_ACCESS_TOKEN": "${input:esa-access-token}"
      }
    }
  }
}

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

esa mcp server in other clients