CCM
/MCP
SkillsMCPMarketplacesDigestLearnAdvertise

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
  • Learn
  • 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 →
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 →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For 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 →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For 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 →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Categories
Cloud & InfrastructureFinance & Commerce
TransportHTTP
UpdatedApr 2, 2026
View on GitHub

Boar blockchain MCP

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

Remote MCP No API Key Read-Only 50 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/basic37Balance checks, transaction lookups, block data, token info, ENS, ABI fetch
Advancedhttps://mcp.boar.network/advanced13Contract 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 (37) · Advanced tools (13)

⛓️ Chains Supported

ChainNetworkTools
BitcoinMainnet7
BitcoinTestnet37
EthereumMainnet15
MezoMainnet8
Cross-chain—4 (selector lookup, ABI fetch, ENS forward + reverse)
Advanced (ETH + Mezo)—13 (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.

⚙️ 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.

Who built this? Boar Network.

📚 Documentation

  • Basic Tools Reference (37 tools)
  • Advanced Tools Reference (13 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)

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