Skip to content
VS Code

mcp-erid for VS Code

io.github.atomno-mcp/mcp-erid

Erid format check; ORD cabinet lookup on the client key.

client:VS Code transport:stdio runtime:pypi

Install mcp-erid in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-erid-ord-token",
      "description": "MCP_ERID_ORD_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-erid-ord-provider",
      "description": "MCP_ERID_ORD_PROVIDER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-erid-api-key",
      "description": "MCP_ERID_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "mcp-erid": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "atomno-mcp-erid"
      ],
      "env": {
        "MCP_ERID_ORD_TOKEN": "${input:mcp-erid-ord-token}",
        "MCP_ERID_ORD_PROVIDER": "${input:mcp-erid-ord-provider}",
        "MCP_ERID_API_KEY": "${input:mcp-erid-api-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-erid in other clients