Skip to content
VS Code

Tychi MCP for VS Code

io.github.tychiwallet/tyi-mcp

Agent-native self-custody wallet MCP: onboard, wallets, Arbitrum sends, policy-gated payments.

client:VS Code transport:stdio runtime:npm

Install Tychi MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "tyi-password",
      "description": "TYI_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tychi-brain-url",
      "description": "TYCHI_BRAIN_URL",
      "password": true
    }
  ],
  "servers": {
    "tyi-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@tychilabs/tyi-mcp"
      ],
      "env": {
        "TYI_PASSWORD": "${input:tyi-password}",
        "TYCHI_BRAIN_URL": "${input:tychi-brain-url}"
      }
    }
  }
}

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

Tychi MCP in other clients