Skip to content
VS Code

interline for VS Code

io.github.choppaaahh/interline

Neutral, non-custodial MCP payment router: discover rails, then pay across them.

client:VS Code transport:stdio runtime:pypi

Install interline in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "apv0-buyer-private-key",
      "description": "APV0_BUYER_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "apv0-network",
      "description": "APV0_NETWORK",
      "password": true
    }
  ],
  "servers": {
    "interline": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "interline"
      ],
      "env": {
        "APV0_BUYER_PRIVATE_KEY": "${input:apv0-buyer-private-key}",
        "APV0_NETWORK": "${input:apv0-network}"
      }
    }
  }
}

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

interline in other clients