Skip to content
VS Code

mcp server for VS Code

io.github.azeth-protocol/mcp-server

Smart accounts, x402 payments, on-chain reputation, and service discovery for AI agents

client:VS Code transport:stdio runtime:npm

Install mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "azeth-private-key",
      "description": "AZETH_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "azeth-chain",
      "description": "AZETH_CHAIN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "azeth-guardian-key",
      "description": "AZETH_GUARDIAN_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "azeth-guardian-auto-sign",
      "description": "AZETH_GUARDIAN_AUTO_SIGN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "azeth-rpc-url-base-sepolia",
      "description": "AZETH_RPC_URL_BASE_SEPOLIA",
      "password": true
    },
    {
      "type": "promptString",
      "id": "azeth-server-url",
      "description": "AZETH_SERVER_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "azeth-emergency-address",
      "description": "AZETH_EMERGENCY_ADDRESS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "xmtp-encryption-key",
      "description": "XMTP_ENCRYPTION_KEY",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@azeth/mcp-server"
      ],
      "env": {
        "AZETH_PRIVATE_KEY": "${input:azeth-private-key}",
        "AZETH_CHAIN": "${input:azeth-chain}",
        "AZETH_GUARDIAN_KEY": "${input:azeth-guardian-key}",
        "AZETH_GUARDIAN_AUTO_SIGN": "${input:azeth-guardian-auto-sign}",
        "AZETH_RPC_URL_BASE_SEPOLIA": "${input:azeth-rpc-url-base-sepolia}",
        "AZETH_SERVER_URL": "${input:azeth-server-url}",
        "AZETH_EMERGENCY_ADDRESS": "${input:azeth-emergency-address}",
        "XMTP_ENCRYPTION_KEY": "${input:xmtp-encryption-key}"
      }
    }
  }
}

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

mcp server in other clients