Quickstart

Pick your path — all three take under a minute.

1

Try a Skill (no signup)

Browse the directory and invoke any free skill instantly — no wallet, no API key, nothing.

curl -X POST https://bluepages.ai/api/v1/invoke/echo-service \
  -H "Content-Type: application/json" \
  -d '{"message": "hello from my agent"}'

Or browse the directory and click "Try" on any skill. Low-cost skills offer 3 free trials per day.

2

Connect Claude via MCP

Give Claude access to all BluePages skills with one command.

Claude Code

claude mcp add bluepages \
  -- npx @bluepages/mcp-server

Claude Desktop

// claude_desktop_config.json
{
  "mcpServers": {
    "bluepages": {
      "command": "npx",
      "args": ["@bluepages/mcp-server"]
    }
  }
}

Then ask Claude: "Search BluePages for weather APIs" or "Generate a UUID using BluePages." See the full integration guide.

3

Publish Your Own Skill

List any HTTP API as a BluePages skill. Free tier, no wallet required.

  1. Go to Submit a Skill
  2. Enter your API name, endpoint URL, and description
  3. Set pricing (free or per-call in USDC)
  4. Click submit — your skill is live in seconds

Paid tiers ($5–$100) add featured badges, priority search, and verification.Compare tiers.

+

Use the SDK

npm install @bluepages/sdk

import { BluePages } from '@bluepages/sdk';

const bp = new BluePages();
const skills = await bp.search('weather');
const result = await bp.invoke('echo-service', { message: 'hello' });

Package: @bluepages/sdk on npm

Resources