CAT
/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

Cross AI Tools

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

Bitbooth Fetch

drock91/bitbooth-docs
authSTDIOregistry active
Summary

Drops a pay-per-fetch tool in front of your agent that converts any URL into clean markdown for 0.005 USDC per call using Coinbase's x402 protocol. No API keys, no accounts. The agent pays directly from its own wallet on Base, Solana, XRPL, or Stellar, picks whichever chain it already holds liquidity on, and gets the content back in about three seconds. Useful when you need one-off web scraping without managing subscriptions or rate limits. The payment loop is HTTP 402, agent signs an on-chain transfer, retries with the payment header, and the server unlocks the response. Built by Heinrichs Software and tested with 2,400+ unit tests covering the payment and middleware paths.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
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 →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
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 →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

BitBooth

The multi-chain x402 payment gateway for AI agents. 18 paid HTTP endpoints, 5 mainnet chains, real on-chain settlement, ~$2/month to run on AWS Lambda.

Live: app.heinrichstech.com Playground: app.heinrichstech.com/demo API reference: app.heinrichstech.com/docs Bazaar manifest: app.heinrichstech.com/bazaar.json A2A agent card: app.heinrichstech.com/.well-known/agent.json


What is this?

BitBooth implements the x402 protocol — Coinbase's spec for "HTTP 402 Payment Required + on-chain settlement." Drop a paywall in front of any HTTP endpoint, and AI agents pay per call from their own wallet. No accounts, no API keys, no signups. Non-custodial — the agent pays your wallet directly, BitBooth never touches the funds.

1. Agent calls a paywalled endpoint with no payment
2. Server returns HTTP 402 with a multi-chain `accepts[]` array
3. Agent picks one entry (whatever chain it holds liquidity on) and signs
4. Agent retries the request with X-PAYMENT header
5. Server verifies + settles + unlocks the response

The whole loop is ~3 seconds on Base mainnet.

Why multi-chain?

Every BitBooth endpoint advertises up to 9 (network, asset) tuples in every 402 challenge:

NetworkAssetFacilitator
Base mainnet (eip155:8453)USDCCoinbase CDP
Base mainnetChainlink LINKSelf-hosted onchain verifier
Solana mainnetUSDC SPLCoinbase CDP
XRPL native (xrpl:0)XRPT54 XRPL Facilitator
XRPL nativeRLUSD (Ripple issuer)T54
XRPL nativeUSDC IOU (Bitstamp issuer)T54
Stellar pubnetXLMSelf-hosted Horizon
Stellar pubnetUSDC (Circle issuer)Self-hosted Horizon
XRPL EVM Sidechain (eip155:1440000)Native XRPSelf-hosted onchain verifier

Agents pick the chain they already hold. No bridging, no swaps, no friction.

Quick start

Pay one endpoint with curl (no payment yet — see the 402 challenge)

curl -s -X POST https://app.heinrichstech.com/v1/cdp/echo \
  -H 'content-type: application/json' \
  -d '{"message":"hello from agent"}'

You'll get back a 402 response body containing resource, accepts[], and an extensions.bazaar block.

Install the MCP server for any Claude / Cursor / Continue agent

npm install -g @bitbooth/mcp-fetch

Or in your MCP client config (Claude Desktop, Cursor, etc.):

{
  "mcpServers": {
    "bitbooth": {
      "command": "npx",
      "args": ["-y", "@bitbooth/mcp-fetch"],
      "env": {
        "BITBOOTH_AGENT_KEY": "0x<your-testnet-wallet-private-key>"
      }
    }
  }
}

Testnet by default (Base Sepolia). Opt into mainnet explicitly with BITBOOTH_CHAIN_ID=8453.

Or build your own buyer

See examples/ for runnable demos:

  • 01-curl-fetch.sh — pure shell, sees the 402 challenge
  • 02-node-evm-pay.mjs — Node + ethers, signs EIP-3009 transferWithAuthorization on Base
  • 03-node-xrpl-pay.mjs — Node + xrpl.js, signs an XRPL Payment tx through the T54 facilitator
  • 04-mcp-config.json — drop-in MCP client config
  • 05-langchain-agent.py — LangChain agent that fetches paid URLs

The endpoint catalog

EndpointPriceCategory
/v1/cdp/echo$0.001utility
/v1/cdp/json-repair$0.001utility
/v1/cdp/faker$0.001utility
/v1/cdp/jwt-verify$0.001utility
/v1/cdp/webhook-sig-verify$0.001utility
/v1/cdp/llm-tool-validate$0.002utility
/v1/cdp/pii-redact$0.002utility
/v1/cdp/rss$0.002data
/v1/cdp/dns$0.002utility
/v1/cdp/ssl-info$0.002security
/v1/cdp/x402-discover$0.005security
/v1/cdp/agent-credit-score$0.005security
/v1/cdp/wallet-doctor$0.005security
/v1/cdp/prompt-injection-scan$0.005security
/v1/cdp/contract-honeypot-check$0.005security
/v1/cdp/approval-safety$0.05security
/v1/cdp/render-pro$0.05data
/v1/cdp/web-diff$0.08data

Full schemas in openapi.yaml. Live manifest at /bazaar.json.

Documentation

  • docs/INTEGRATION.md — integration guide (buyer + seller patterns)
  • docs/ENDPOINTS.md — full endpoint catalog with examples
  • docs/XRPL.md — XRPL native + XRPL EVM Sidechain integration notes
  • openapi.yaml — full OpenAPI spec for every paid endpoint
  • examples/ — runnable demos

About

BitBooth is built and operated by Heinrichs Software Solutions Company — a veteran-owned business based in Tallahassee, Florida. SDVOSB-pending, CAGE-registered, SAM.gov-registered. Solo-built. Production-grade testing (~2,400+ Vitest tests, 92% coverage on core payment + middleware paths). Approved under Anthropic's Cyber Verification Program for dual-use cybersecurity work.

License

MIT — see LICENSE.

This repository contains the public documentation, OpenAPI spec, and runnable examples for BitBooth. The gateway source code is operated privately during a federal-procurement-posture scrub; for technical-interview-grade source access, contact derek@heinrichstech.com.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
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 →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

BITBOOTH_AGENT_KEY*secret

Hex-encoded private key for the agent wallet that pays USDC. Testnet by default (Base Sepolia) — set BITBOOTH_CHAIN_ID=8453 to use Base mainnet.

BITBOOTH_API_URL

BitBooth gateway URL. Defaults to the staging endpoint on Base Sepolia.

BITBOOTH_CHAIN_ID

EVM chain ID. Defaults to 84532 (Base Sepolia testnet). Set to 8453 for Base mainnet (spends real USDC).

Categories
AI & LLM ToolsDocuments & KnowledgeSearch & Web Crawling
Registryactive
Package@bitbooth/mcp-fetch
TransportSTDIO
AuthRequired
UpdatedMay 25, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
SkillFM LLM Cost Optimizer

io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage

LLM cost optimizer for OpenAI, Anthropic, token usage, BYOK, and SkillFM Beacon audits.
Llm Orchestration Agent

io.github.mikerawsonnz/llm-orchestration-agent

Run a prompt through a LangChain (system + human) chain over Gemini on Vertex AI; optional LangSmith
Authenticated Llm Agent

io.github.mikerawsonnz/authenticated-llm-agent

JWT-gated LLM gateway: authenticate (bcrypt/JWT), then run a LangChain-on-Vertex Gemini completion.
Copilot Memory MCP

labforgedev/copilot-memory-mcp

Persistent semantic memory for AI agents using local ChromaDB vector search. No cloud required.
1
Agent Prompt Injection Firewall Mcp

csoai-org/agent-prompt-injection-firewall-mcp

The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Authenticated Multi Llm Agent

io.github.mikerawsonnz/authenticated-multi-llm-agent

Google-OAuth-gated LLM gateway: verify a Google ID token, then run a Gemini (Vertex AI) completion f