Skip to content
VS Code

bloomfilter for VS Code

io.github.eronmmer/bloomfilter

Service that lets AI Agents search, register, and configure domains

client:VS Code transport:stdio runtime:npm

Install bloomfilter in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "bloomfilter-private-key",
      "description": "BLOOMFILTER_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bloomfilter-api-url",
      "description": "BLOOMFILTER_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bloomfilter-network",
      "description": "BLOOMFILTER_NETWORK",
      "password": true
    }
  ],
  "servers": {
    "bloomfilter": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@bloomfilter/mcp-server"
      ],
      "env": {
        "BLOOMFILTER_PRIVATE_KEY": "${input:bloomfilter-private-key}",
        "BLOOMFILTER_API_URL": "${input:bloomfilter-api-url}",
        "BLOOMFILTER_NETWORK": "${input:bloomfilter-network}"
      }
    }
  }
}

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

bloomfilter in other clients