Skip to content
VS Code

Moneo for VS Code

io.github.moneolabs/moneo

A guarded wallet for AI agents on Robinhood Chain: a spending policy runs before every signature.

client:VS Code transport:stdio runtime:npm

Install Moneo in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "moneo-agent",
      "description": "MONEO_AGENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "moneo-asset",
      "description": "MONEO_ASSET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "moneo-policy",
      "description": "MONEO_POLICY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "moneo-key-path",
      "description": "MONEO_KEY_PATH",
      "password": true
    }
  ],
  "servers": {
    "moneo": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@moneolabs/mcp"
      ],
      "env": {
        "MONEO_AGENT": "${input:moneo-agent}",
        "MONEO_ASSET": "${input:moneo-asset}",
        "MONEO_POLICY": "${input:moneo-policy}",
        "MONEO_KEY_PATH": "${input:moneo-key-path}"
      }
    }
  }
}

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

Moneo in other clients