Skip to content
VS Code

printr for VS Code

io.github.printrfi/printr

Let AI agents create, discover, and track tokens across chains via Printr.

client:VS Code transport:stdio runtime:npm

Install printr in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "printr-api-key",
      "description": "PRINTR_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openrouter-api-key",
      "description": "OPENROUTER_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openrouter-image-model",
      "description": "OPENROUTER_IMAGE_MODEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "evm-wallet-private-key",
      "description": "EVM_WALLET_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "svm-wallet-private-key",
      "description": "SVM_WALLET_PRIVATE_KEY",
      "password": true
    }
  ],
  "servers": {
    "printr": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@printr/mcp"
      ],
      "env": {
        "PRINTR_API_KEY": "${input:printr-api-key}",
        "OPENROUTER_API_KEY": "${input:openrouter-api-key}",
        "OPENROUTER_IMAGE_MODEL": "${input:openrouter-image-model}",
        "EVM_WALLET_PRIVATE_KEY": "${input:evm-wallet-private-key}",
        "SVM_WALLET_PRIVATE_KEY": "${input:svm-wallet-private-key}"
      }
    }
  }
}

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

printr in other clients