Skip to content
VS Code

Pellet for VS Code

io.github.pelletfi/mcp

Token intelligence on Base. Market data, safety flags, and analysis via x402.

client:VS Code transport:stdio runtime:npm

Install Pellet in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "evm-private-key",
      "description": "EVM_PRIVATE_KEY",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@pelletfi/mcp"
      ],
      "env": {
        "EVM_PRIVATE_KEY": "${input:evm-private-key}"
      }
    }
  }
}

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

Pellet in other clients