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

API for Chads

chadbot0x/apiforchads-mcp
HTTPregistry active
Summary

Connects Claude to crypto prices via Chainlink oracles and Binance, Polymarket CLOB orderbook data, AI-powered web research through Gemini, and headless browser rendering with Playwright. You get nine tools: price lookups, prediction market spreads, quick and deep research reports, webpage rendering to markdown, screenshots, CSS extraction, and PDF generation. Built around the x402 micropayment protocol so agents can pay per request with Solana without API keys, though traditional bearer tokens work too. Useful when you need market intelligence or rendered web content in Claude without managing subscriptions. Pricing runs from 0.0001 SOL for price checks up to 0.02 SOL for deep research.

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 →

API for Chads
MCP server for AI agents — crypto prices, prediction markets, web research & rendering

Website • Quick Start • Tools • Examples • Payment

Smithery MCP Compatible x402 Solana 9 Tools License Last Commit


9 tools for market intelligence, web rendering, and deep research. No accounts, no subscriptions — pay per request with Solana micropayments or an API key.

🌐 apiforchads.com

Why?

AI agents need data. Getting it usually means API keys, monthly plans, rate limit dashboards, and billing pages. That's friction built for humans, not agents.

API for Chads is built for the agentic web:

  • MCP native — agents discover and use tools automatically
  • x402 native — agents pay per request with Solana, no human needed
  • One server, four capabilities — prices, markets, research, rendering
  • Sub-penny pricing — most requests cost < $0.02

Tools

ToolWhat It DoesPrice
get_crypto_priceReal-time BTC/ETH via Chainlink oracles + Binance0.0001 SOL
get_prediction_marketPolymarket CLOB best bid/ask/spread0.0001 SOL
quick_researchWeb-grounded research report (~20s)0.005 SOL
deep_researchAutonomous deep research with citations (~5min)0.02 SOL
render_webpageJS-rendered page → markdown/text/html0.0003 SOL
screenshot_webpageFull-page PNG screenshot0.0005 SOL
extract_from_webpageCSS selector extraction from any page0.0003 SOL
webpage_to_pdfPage → PDF document0.0005 SOL
list_servicesService catalog with pricingFree

Quick Start

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "apiforchads": {
      "url": "https://mcp.apiforchads.com/mcp"
    }
  }
}

Restart Claude. You now have 9 new tools.

Cursor / Windsurf

Add to your MCP settings:

{
  "apiforchads": {
    "url": "https://mcp.apiforchads.com/mcp"
  }
}

Any MCP Client (Python)

from mcp import ClientSession
from mcp.client.streamable_http import streamablehttp_client

async with streamablehttp_client("https://mcp.apiforchads.com/mcp") as (r, w, _):
    async with ClientSession(r, w) as session:
        await session.initialize()

        # Get BTC price
        result = await session.call_tool("get_crypto_price", {"asset": "BTC"})
        print(result)  # {"chainlink_price": 65920.45, "binance_price": 65935.12, ...}

Examples

Get crypto prices

# With API key
curl -H "Authorization: Bearer YOUR_KEY" \
  https://price.apiforchads.com/v1/prices/BTC

# Response
{
  "asset": "BTC",
  "chainlink_price": 65920.45,
  "binance_price": 65935.12,
  "chainlink_age_seconds": 13,
  "timestamp": 1771833021
}

Get Polymarket orderbook

curl -H "Authorization: Bearer YOUR_KEY" \
  https://price.apiforchads.com/v1/clob/will-trump-deport-less-than-250000

# Response
{
  "market_slug": "will-trump-deport-less-than-250000",
  "best_bid": 0.42,
  "best_ask": 0.44,
  "spread": 0.02,
  "mid_price": 0.43
}

Quick research

curl -X POST -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  https://research.apiforchads.com/v1/research \
  -d '{"query": "What are the latest Bitcoin ETF inflows?", "tier": "quick"}'

# Returns job_id — poll /v1/research/status/{job_id} for results

Render a JS-heavy page

curl -X POST -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  https://render.apiforchads.com/v1/render \
  -d '{"url": "https://polymarket.com", "format": "markdown", "max_chars": 5000}'

Screenshot

curl -X POST -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  https://render.apiforchads.com/v1/render/screenshot \
  -d '{"url": "https://example.com", "full_page": true}' \
  --output screenshot.png

Python SDK (coming soon)

from apiforchads import Client

client = Client(api_key="YOUR_KEY")

btc = client.price("BTC")
print(f"BTC: ${btc.chainlink_price:,.2f}")

market = client.clob("will-trump-deport-less-than-250000")
print(f"Bid: {market.best_bid} Ask: {market.best_ask}")

report = client.research("Latest crypto regulations", tier="quick")
print(report.text)

Payment

Two ways to pay:

1. API Key (recommended for humans)

Get a free API key with 1000 requests: email chadbot0x@proton.me

curl -H "Authorization: Bearer YOUR_KEY" https://price.apiforchads.com/v1/prices/BTC

2. x402 Micropayments (for agents)

The x402 protocol lets agents pay per request with Solana:

  1. Call any endpoint — get a 402 with payment details
  2. Send micropayment to EDQQe7Nufgvo2A6uXTmCpTr2FumZRB3fNzTH4Wuvpvpd
  3. Retry with X-Payment-Signature header containing the tx signature
  4. Get your data

No signup. No monthly fee. Pure pay-per-use.

REST API Endpoints

Use these directly without MCP:

Base URLService
https://price.apiforchads.comCrypto prices + Polymarket CLOB
https://research.apiforchads.comAI-powered research
https://render.apiforchads.comWeb rendering, screenshots, PDFs
https://mcp.apiforchads.comMCP protocol endpoint

Rate Limits

EndpointLimit
Price/CLOB60/min
Research10/min
Render30/min

Architecture

                    ┌─────────────────────┐
                    │   Cloudflare Edge    │
                    │   (SSL + routing)    │
                    └──────────┬──────────┘
                               │
              ┌────────────────┼────────────────┐
              │                │                │
    ┌─────────┴──┐   ┌────────┴───┐   ┌────────┴───┐
    │ Price API  │   │ Research   │   │ Render API │
    │ :8100      │   │ API :8101  │   │ :8102      │
    │            │   │            │   │            │
    │ • Chainlink│   │ • Gemini   │   │ • Playwright│
    │ • Binance  │   │ • Google   │   │ • Chromium  │
    │ • CLOB     │   │ • Search   │   │ • SSRF prot │
    └────────────┘   └────────────┘   └────────────┘
              │                │                │
              └────────────────┼────────────────┘
                               │
                    ┌──────────┴──────────┐
                    │   MCP Server :8103  │
                    │   (tool discovery)  │
                    └─────────────────────┘

Built With

  • MCP Python SDK — FastMCP streamable HTTP transport
  • Chainlink — decentralized oracle price feeds
  • Playwright — headless Chromium for JS rendering
  • Gemini — AI research with Google Search grounding
  • x402 — HTTP 402 micropayment protocol on Solana
  • Cloudflare Tunnels — zero-trust networking

Self-Hosting

git clone https://github.com/chadbot0x/apiforchads-mcp.git
cd apiforchads-mcp

# Install dependencies
pip install mcp httpx

# Run the MCP server (connects to public APIs by default)
python server.py

To run the full stack (price + research + render APIs), see the self-hosting guide (coming soon).

Contributing

Issues and PRs welcome. If you build something cool with these tools, let us know.

License

MIT


Built by @chadbot0x · Powered by agents, for agents

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 →
Categories
Finance & Commerce
Registryactive
TransportHTTP
UpdatedFeb 23, 2026
View on GitHub

Related Finance & Commerce MCP Servers

View all →
Shopify Subscription Reconciliation MCP (Recharge Edition)

io.github.shelvick/shopify-subscription-reconciliation

Reconcile Shopify orders against Recharge subscription charges and Stripe payouts.
Google Ads

zleventer/google-ads-mcp

MCP server for Google Ads — 22 tools for spend diagnosis, impression share, and asset performance.
1
Meok Stripe Acp Checkout Mcp

csoai-org/meok-stripe-acp-checkout-mcp

MEOK Stripe ACP Checkout MCP — ChatGPT shopping bridge. Issues + verifies + signs Stripe Agentic
Google Ads

io.github.mharnett/google-ads

Google Ads MCP with MCC support: 35 tools for campaigns, keywords, reporting, GAQL.
Stripe Billing Mcp

csoai-org/stripe-billing-mcp

stripe-billing-mcp MCP server by MEOK AI Labs
Google Ads Mcp

co.pipeboard/google-ads-mcp

Google Ads automation with AI: analyze performance, manage campaigns, optimize bids.