Skip to content
VS Code

mcp for VS Code

com.getplexa/mcp

Economic-safety tools for trading agents: executable quote + rug/honeypot pretrade check via x402.

client:VS Code transport:stdio runtime:npm

Install mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "agent-wallet-key",
      "description": "AGENT_WALLET_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "plexa-base-url",
      "description": "PLEXA_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "chain",
      "description": "CHAIN",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@getplexa/mcp"
      ],
      "env": {
        "AGENT_WALLET_KEY": "${input:agent-wallet-key}",
        "PLEXA_BASE_URL": "${input:plexa-base-url}",
        "CHAIN": "${input:chain}"
      }
    }
  }
}

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

mcp in other clients