Skip to content
VS Code

resolve for VS Code

dev.forestrie/resolve

Fetches receipts, genesis and accumulator snapshots for @forestrie/mcp-verify and labels provenance

client:VS Code transport:stdio runtime:npm

Install resolve in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "forestrie-base-url",
      "description": "FORESTRIE_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "forestrie-rpc-url",
      "description": "FORESTRIE_RPC_URL",
      "password": true
    }
  ],
  "servers": {
    "resolve": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@forestrie/mcp-resolve"
      ],
      "env": {
        "FORESTRIE_BASE_URL": "${input:forestrie-base-url}",
        "FORESTRIE_RPC_URL": "${input:forestrie-rpc-url}"
      }
    }
  }
}

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

resolve in other clients