Bloomfilter MCP Server

1

Add it to Claude Code

Run this in a terminal.

Run in terminal
claude mcp add bloomfilter -- npx -y @bloomfilter/mcp-server
README.md

Search & register domain names and manage DNS records from AI agents.

@bloomfilter/mcp-server

MCP server for Bloomfilter, search & register domain names and manage DNS records from AI agents.

Bloomfilter is a domain registration and configuration API that uses x402 for payments. Point your AI agent at the Bloomfilter API, give it a wallet with some USDC, and it can autonomously search, register, and configure domains.

No login, no credit card, no dashboard. Just HTTP requests and a crypto wallet.

This MCP server wraps the Bloomfilter API so that any MCP-compatible client (Claude Desktop, Cursor, Windsurf, custom agents, etc.) can use it as a tool provider.

Quick Start

BLOOMFILTER_PRIVATE_KEY=0x... npx @bloomfilter/mcp-server

The server communicates over stdio (JSON-RPC). It's meant to be launched by an MCP client, not run standalone.

Configuration

Add this JSON to your MCP client's config file:

{
	"mcpServers": {
		"bloomfilter": {
			"command": "npx",
			"args": ["-y", "@bloomfilter/mcp-server"],
			"env": {
				"BLOOMFILTER_PRIVATE_KEY": "0x..."
			}
		}
	}
}

Config file location by client

Client Config file
Claude Desktop claude_desktop_config.json
Claude Code ~/.claude/settings.json
Cursor .cursor/mcp.json
Windsurf ~/.codeium/windsurf/mcp_config.json
VS Code + Copilot .vscode/mcp.json
Cline Via Cline MCP settings UI
JetBrains IDEs Settings > Tools > AI Assistant > MCP

Any MCP-compatible client that supports stdio servers will work.

Environment variables

Variable Required Default Description
BLOOMFILTER_PRIVATE_KEY For paid operations - EVM private key (hex). Used for x402 payments and wallet-based auth.
BLOOMFILTER_API_URL No https://api.bloomfilter.xyz API base URL.

Without a private key, only search_domains and get_pricing work. Everything else requires a wallet.

Tools

The server exposes 10 tools:

Free (no wallet needed)

  • search_domains: Check if a domain is available and get pricing. Searches across multiple TLDs at once.
  • get_pricing: Get registration, renewal, and transfer pricing for one or all supported TLDs.

Authenticated (wallet required)

  • get_domain_info: Get details about a registered domain: status, expiry, nameservers, lock state.
  • register_domain: Register a new domain. Pays with USDC via x402 automatically. Handles async provisioning.
  • renew_domain: Extend a domain registration. Same x402 payment flow.
  • get_account: View wallet address, domain count, total spent.

DNS Management (wallet required, $0.10 USDC per mutation)

  • list_dns_records: List all DNS records for a domain.
  • add_dns_record: Add a DNS record (A, AAAA, CNAME, MX, TXT, NS, SRV, CAA, FORWARD).
  • update_dns_record: Update an existing DNS record by ID.
  • delete_dns_record: Delete a DNS record by ID.

How Payments Work

Bloomfilter uses the x402 protocol, an HTTP-native payment standard. When a tool triggers a paid API call, the server handles payment negotiation automatically:

  1. The API responds with HTTP 402 and a payment requirement
  2. The MCP server signs a USDC payment with your wallet
  3. The API verifies the payment and completes the request

All payments are in USDC on Base (an Ethereum L2). You need USDC in the wallet corresponding to your private key.

Authentication

The server authenticates with the Bloomfilter API using SIWE (Sign-In With Ethereum). This happens automatically on t

Tools (10)

search_domainsCheck if a domain is available and get pricing across multiple TLDs.
get_pricingGet registration, renewal, and transfer pricing for one or all supported TLDs.
get_domain_infoGet details about a registered domain including status, expiry, and nameservers.
register_domainRegister a new domain with automatic USDC payment via x402.
renew_domainExtend a domain registration using x402 payment flow.
get_accountView wallet address, domain count, and total spent.
list_dns_recordsList all DNS records for a domain.
add_dns_recordAdd a DNS record such as A, AAAA, CNAME, or TXT.
update_dns_recordUpdate an existing DNS record by ID.
delete_dns_recordDelete a DNS record by ID.

Environment Variables

BLOOMFILTER_PRIVATE_KEYEVM private key (hex) for x402 payments and wallet-based auth.
BLOOMFILTER_API_URLAPI base URL (defaults to https://api.bloomfilter.xyz).

Configuration

claude_desktop_config.json
{"mcpServers": {"bloomfilter": {"command": "npx", "args": ["-y", "@bloomfilter/mcp-server"], "env": {"BLOOMFILTER_PRIVATE_KEY": "0x..."}}}}

Try it

Check if the domain 'my-new-startup.xyz' is available and what the registration cost is.
Register the domain 'ai-agent-demo.com' using my connected wallet.
List all current DNS records for 'example.com' and add a new TXT record for verification.
What is my current account balance and how many domains do I own?

Frequently Asked Questions

What are the key features of Bloomfilter?

Autonomous domain registration and renewal using USDC payments. Full DNS record management including A, AAAA, CNAME, and TXT records. Real-time domain availability and pricing lookups. Wallet-based authentication using SIWE (Sign-In With Ethereum). Automated payment negotiation via the x402 protocol.

What can I use Bloomfilter for?

Automating the deployment of infrastructure by registering domains and configuring DNS records programmatically.. Building AI agents that can manage a portfolio of domains without manual dashboard interaction.. Streamlining domain acquisition for developers who prefer CLI or agent-based workflows over traditional registrars..

How do I install Bloomfilter?

Install Bloomfilter by running: BLOOMFILTER_PRIVATE_KEY=0x... npx @bloomfilter/mcp-server

What MCP clients work with Bloomfilter?

Bloomfilter works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep Bloomfilter docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare