CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Boar blockchain MCP (basic)

boar-network/blockchain-mcp
12HTTP
Summary

A remote blockchain MCP that runs on Cloudflare's edge with zero setup. Point your client at the URL and you get 50 read-only tools across Bitcoin, Ethereum, and Mezo. Query balances, decode transactions, resolve ENS names, fetch ERC-20 token info, read contract state, or batch calls through Multicall3. The basic endpoint handles lookups and balance checks. The advanced endpoint adds contract interaction, ABI decoding, and revert analysis. Everything is stateless and strictly read-only, so no wallet access or transaction signing. Useful when you need blockchain data in an agent workflow without managing RPC providers or API keys.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Email for Agents: Free tier availableEmail for Agents: Free tier available
Email for Agents: Free tier available
Give your AI agent a complete email layer—sending, inbound inboxes, and sandbox testing.
Get 4K emails/month free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
AI notepad for back-to-back meetings
AI notepad for back-to-back meetings
Notes, actions and memory. Without a meeting bot. First month 100% off.
Download for free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Email for Agents: Free tier availableEmail for Agents: Free tier available
Email for Agents: Free tier available
Give your AI agent a complete email layer—sending, inbound inboxes, and sandbox testing.
Get 4K emails/month free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
AI notepad for back-to-back meetings
AI notepad for back-to-back meetings
Notes, actions and memory. Without a meeting bot. First month 100% off.
Download for free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →

Boar blockchain MCP

Free, keyless MCP server with 65 read-only blockchain tools across Bitcoin, Ethereum, and Mezo. No local installation required.

Remote MCP No API Key Read-Only 65 Tools 3 Chains

RegistryBasicAdvanced
Glama.aiboar-blockchain-mcp-basicboar-blockchain-mcp-advanced
Smithery.aismithery badgesmithery badge
mcp.sobasicadvanced
Cursor Directoryboar-blockchain-mcpboar-blockchain-mcp

🚀 Quick Start

No install. No API key. Just add the URL to your MCP client.

Claude Desktop

Add to your config file (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "boar-blockchain-mcp-basic": {
      "type": "streamable-http",
      "url": "https://mcp.boar.network/basic"
    },
    "boar-blockchain-mcp-advanced": {
      "type": "streamable-http",
      "url": "https://mcp.boar.network/advanced"
    }
  }
}

Claude Code

/plugin marketplace add boar-network/blockchain-mcp
/plugin install boar-blockchain-mcp@boar-network/blockchain-mcp

Or via CLI:

claude mcp add boar-blockchain-mcp-basic --transport http --scope project https://mcp.boar.network/basic
claude mcp add boar-blockchain-mcp-advanced --transport http --scope project https://mcp.boar.network/advanced

Cursor

Add to .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "boar-blockchain-mcp-basic": {
      "url": "https://mcp.boar.network/basic"
    },
    "boar-blockchain-mcp-advanced": {
      "url": "https://mcp.boar.network/advanced"
    }
  }
}

OpenCode

Add to opencode.json in your project root:

{
  "mcp": {
    "boar-blockchain-mcp-basic": {
      "type": "remote",
      "url": "https://mcp.boar.network/basic"
    },
    "boar-blockchain-mcp-advanced": {
      "type": "remote",
      "url": "https://mcp.boar.network/advanced"
    }
  }
}

More clients: VS Code · Windsurf · Gemini CLI · OpenCode · All setup guides

💡 What Can You Do?

Once connected, try these prompts:

  • "What is vitalik.eth's ETH balance?" — resolves ENS name, then fetches balance
  • "Show me the UTXOs for 1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa" — Satoshi's address, Bitcoin UTXO set
  • "Why did transaction 0x... fail?" — fetches receipt, decodes revert reason
  • "What ERC-20 tokens does 0x... hold?" — gets token balance with symbol and decimals
  • "Batch-read 5 contract storage values in one call" — Multicall3 batched reads

See the full Prompt Cookbook for 6 detailed agent workflows.

🔗 Endpoints

EndpointURLToolsBest For
Basichttps://mcp.boar.network/basic46Balance checks, transaction lookups, block data, token info, ENS, ABI fetch
Advancedhttps://mcp.boar.network/advanced19Contract calls, ABI decoding, revert analysis, calldata encoding, Multicall3

Start with /basic. Add /advanced when you need smart contract interaction or transaction debugging. Which should I use?

🛠️ Top Tools at a Glance

ToolChainWhat It Does
eth_get_balanceEthereumGet ETH balance (wei + ether)
eth_resolve_ensEthereumResolve ENS name to address
eth_get_token_balanceEthereumERC-20 balance with symbol and decimals
eth_get_transaction_receiptEthereumTransaction receipt with status and logs
eth_get_abiAny EVMFetch verified ABI from Sourcify
btc_get_balanceBitcoinConfirmed + unconfirmed balance (satoshis)
btc_get_utxosBitcoinUnspent transaction outputs
mezo_get_balanceMezoNative token balance on Mezo
eth_callEthereumRead-only smart contract call
eth_multicallEthereumBatch contract reads via Multicall3

Full tool reference: Basic tools (46) · Advanced tools (19)

⛓️ Chains Supported

ChainNetworkTools
BitcoinMainnet7
BitcoinTestnet37
EthereumMainnet14
MezoMainnet9
MezoTestnet9
Cross-chain—4 (selector lookup, ABI fetch, ENS forward + reverse)
Advanced (ETH + Mezo + Mezo testnet)—19 (contract calls, decoders, encoding, multicall)

Mezo is a Bitcoin-first blockchain built on Cosmos SDK with EVM compatibility. All Ethereum EVM tools have Mezo equivalents — same interface, different chain. Mezo testnet mirrors mainnet with full tool parity (mezo_testnet_ prefix), following the same mainnet/testnet split as Bitcoin.

⚙️ How It Works

Boar blockchain MCP is a remote MCP server running on Cloudflare Workers' global edge network. Every request is stateless — no sessions, no stored data. All tools are strictly read-only: no transaction signing, no wallet access, no state mutation. Your AI agent connects over HTTPS using Streamable HTTP transport (with SSE fallback).

❓ FAQ

Is this really free? Yes. No API key, no account, no payment. Fair use applies.

Is it safe? All tools are read-only. The server cannot send transactions, access private keys, or modify any blockchain state. It returns publicly available data only.

What MCP transport does it use? Streamable HTTP with SSE fallback. All modern MCP clients support this.

Can I use both endpoints at the same time? Yes. Configure them as two separate MCP servers in your client. See Basic vs Advanced.

Does it support Bitcoin testnet? Yes. All 7 Bitcoin tools have btc_testnet_ equivalents for testnet3.

Does it support Mezo testnet? Yes. All 9 basic and 6 advanced Mezo tools have mezo_testnet_ equivalents.

Who built this? Boar Network.

📚 Documentation

  • Basic Tools Reference (46 tools)
  • Advanced Tools Reference (19 tools)
  • Basic vs Advanced Guide
  • Prompt Cookbook — 6 Agent Workflows

📖 Setup Guides

  • Claude Desktop
  • Claude Code
  • Cursor
  • VS Code (GitHub Copilot)
  • Windsurf
  • Gemini CLI
  • OpenCode

📋 Policies

  • Security
  • Privacy
  • Support
  • Changelog
  • License (MIT)
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Email for Agents: Free tier availableEmail for Agents: Free tier available
Email for Agents: Free tier available
Give your AI agent a complete email layer—sending, inbound inboxes, and sandbox testing.
Get 4K emails/month free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
AI notepad for back-to-back meetings
AI notepad for back-to-back meetings
Notes, actions and memory. Without a meeting bot. First month 100% off.
Download for free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Categories
Cloud & InfrastructureFinance & Commerce
TransportHTTP
UpdatedApr 2, 2026
View on GitHub

Related Cloud & Infrastructure MCP Servers

View all →
K8s

silenceper/mcp-k8s

Provides Kubernetes resource management and Helm operations via MCP for easy automation and LLM integration.
145
Containerization Assist

azure/containerization-assist

TypeScript MCP server for AI-powered containerization workflows with Docker and Kubernetes support
41
AWS Builder

io.github.evozim/aws-builder

AWS CloudFormation and Terraform infrastructure blueprint builder.
Kubernetes

strowk/mcp-k8s-go

MCP server connecting to Kubernetes
381
Kubernetes

reza-gholizade/k8s-mcp-server

Provides a standardized MCP interface to interact with Kubernetes clusters, enabling resource management, metrics, logs, and events.
156
MCP Server Kubernetes

flux159/mcp-server-kubernetes

Provides unified Kubernetes management via MCP, enabling kubectl-like operations, Helm interactions, and observability.
1.4k