Crypto prices, Polymarket CLOB, AI research & web rendering. x402 Solana payments.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-chadbot0x-apiforchads": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
9 tools for market intelligence, web rendering, and deep research. No accounts, no subscriptions — pay per request with Solana micropayments or an API key.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol (MCP) server that provides AI assistants with direct access to the Spreedly payments API. Enables LLMs to manage gateways, process transactions, tokenize payment methods, and more, through structured, validated tool calls.
MCP server for InsightSentry financial data API - market data, options, screeners, and more
A Model Context Protocol server allows Clients to interact with Xero
MCP Security Weekly
Get CVE alerts and security updates for io.github.chadbot0x/apiforchads and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
API for Chads
MCP server for AI agents — crypto prices, prediction markets, web research & rendering
Website • Quick Start • Tools • Examples • Payment
9 tools for market intelligence, web rendering, and deep research. No accounts, no subscriptions — pay per request with Solana micropayments or an API key.
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:
| Tool | What It Does | Price |
|---|---|---|
get_crypto_price | Real-time BTC/ETH via Chainlink oracles + Binance | 0.0001 SOL |
get_prediction_market | Polymarket CLOB best bid/ask/spread | 0.0001 SOL |
quick_research | Web-grounded research report (~20s) | 0.005 SOL |
deep_research | Autonomous deep research with citations (~5min) | 0.02 SOL |
render_webpage | JS-rendered page → markdown/text/html | 0.0003 SOL |
screenshot_webpage | Full-page PNG screenshot | 0.0005 SOL |
extract_from_webpage | CSS selector extraction from any page | 0.0003 SOL |
webpage_to_pdf | Page → PDF document | 0.0005 SOL |
list_services | Service catalog with pricing | Free |
Add to claude_desktop_config.json:
{
"mcpServers": {
"apiforchads": {
"url": "https://mcp.apiforchads.com/mcp"
}
}
}
Restart Claude. You now have 9 new tools.
Add to your MCP settings:
{
"apiforchads": {
"url": "https://mcp.apiforchads.com/mcp"
}
}
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, ...}
# 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
}
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
}
curl -X POST -H "Authorization: Bearer YOUR_KEY" \
-H "Content-Type: application/json" \
https://r
... [View full README on GitHub](https://github.com/chadbot0x/apiforchads-mcp#readme)