Skip to content
VS Code

Entity-ID Resolver for VS Code

xyz.entityresolver/resolver

Ambiguous name/ticker to verified IDs: SEC CIK, GLEIF LEI, ISIN, Wikidata, CoinGecko. Non-US too.

client:VS Code transport:stdio runtime:npm

Install Entity-ID Resolver in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "buyer-private-key",
      "description": "BUYER_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "entityresolver-url",
      "description": "ENTITYRESOLVER_URL",
      "password": true
    }
  ],
  "servers": {
    "resolver": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "entityresolver-mcp"
      ],
      "env": {
        "BUYER_PRIVATE_KEY": "${input:buyer-private-key}",
        "ENTITYRESOLVER_URL": "${input:entityresolver-url}"
      }
    }
  }
}

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

Entity-ID Resolver in other clients