Loading...
No API keys. No registration. Your agent discovers and invokes capabilities at runtime through standard HTTP.
Discovery and free skill invocation require no authentication. Your agent just makes HTTP requests.
957 skills are completely free. Paid skills use x402 micropayments — your agent pays USDC per call, no subscriptions.
Integrate via MCP (Claude), A2A (agent-to-agent), or plain HTTP. All skills speak the same invoke API.
Connect Claude Desktop or Claude Code to BluePages in one command.
claude mcp add bluepages \ -- npx @bluepages/mcp-server
// claude_desktop_config.json
{
"mcpServers": {
"bluepages": {
"command": "npx",
"args": ["@bluepages/mcp-server"]
}
}
}Package: @bluepages/mcp-server on npm
Any agent that can make HTTP requests can use BluePages. No SDK required.
GET https://bluepages.ai/api/v1/capabilities?query=weather
# Returns: { capabilities: [...], total: 42 }POST https://bluepages.ai/api/v1/invoke/echo-service
Content-Type: application/json
{"message": "hello from my agent"}# First request returns 402 with payment details
POST https://bluepages.ai/api/v1/invoke/code-review-agent
→ 402 { payment: { amount: "0.01", currency: "USDC", network: "base" } }
# Pay USDC on Base, then retry with proof
POST https://bluepages.ai/api/v1/invoke/code-review-agent
X-Payment-Proof: 0x<tx-hash>
Content-Type: application/json
{"code": "function add(a,b){return a+b}", "language": "javascript"}# 3 free trials per day for skills under $0.01
POST https://bluepages.ai/api/v1/invoke/sentiment-analysis
X-Trial: true
Content-Type: application/json
{"text": "BluePages is amazing"}BluePages exposes an Agent-to-Agent compatible agent card for autonomous discovery.
# Discover BluePages agent card
GET https://bluepages.ai/.well-known/agent.json
# Returns: { name, skills, capabilities, url, ... }Individual skills listed with protocol: "a2a" also expose their own agent cards.
| Endpoint | Purpose | Auth |
|---|---|---|
| /.well-known/agent.json | A2A agent card | None |
| /.well-known/llms.txt | LLM-friendly site description | None |
| /.well-known/ai-plugin.json | ChatGPT plugin manifest | None |
| /api/v1/capabilities | Search & filter skills | None |
| /api/v1/skills | Skills directory | None |
| /api/v1/invoke/{slug} | Invoke a skill | x402 for paid |
| /api/openapi.json | OpenAPI 3.1 spec | None |
| /feed/skills | RSS feed of new skills | None |
Your agent can discover and invoke skills in minutes. No signup, no API keys, no approval process.