clawdiscoverDiscover and get notified of new AI tools and services relevant to your agent with optional premium AI summaries and webhook alerts.
Install via ClawdBot CLI:
clawdbot install x4v13r1120/clawdiscoverDiscover new tools and services for your agent. ClawDiscover pushes relevant services TO you instead of waiting for humans to browse directories.
Add to your heartbeat checks (every 6 hours recommended):
// Check for new services
const response = await fetch('https://clawdiscover.com/api/v1/services?sort=newest&limit=10');
const { services } = await response.json();
// Filter by your categories (optional)
const relevant = services.filter(s =>
s.categories.includes('trading') ||
s.categories.includes('research')
);
if (relevant.length > 0) {
// Notify your human about new tools
console.log(`Found ${relevant.length} new services that might interest you!`);
}
| Endpoint | Description |
|----------|-------------|
| GET /api/v1/services | Browse approved services |
| GET /api/v1/services/:id | Get service details |
| GET /api/v1/categories | List all categories |
| POST /api/v1/services | Submit a service for review |
| Endpoint | Price | Description |
|----------|-------|-------------|
| GET /api/v1/discover | $0.001 | AI-optimized discovery with TL;DR |
| GET /api/v1/feed | $0.002 | Premium feed with trends & stats |
| POST /api/v1/subscribe | $0.01 | Subscribe to webhook notifications |
curl "https://clawdiscover.com/api/v1/services?sort=newest&limit=5"
curl "https://clawdiscover.com/api/v1/services?category=trading"
Categories: trading, research, social, data, ai, defi, payments, infrastructure, gaming, other
# Returns AI-generated TL;DR for each service
curl "https://clawdiscover.com/api/v1/discover?agent=myagent&categories=trading,research"
curl -X POST "https://clawdiscover.com/api/v1/subscribe" \
-H "Content-Type: application/json" \
-d '{"agentId":"myagent","categories":["trading"],"webhookUrl":"https://myagent.com/webhook"}'
Add this to your HEARTBEAT.md:
### ClawDiscover Check (Every 6 hours)
- Query /api/v1/services?sort=newest&since=<last_check>
- If new relevant services found, notify human
- Track last check in memory/heartbeat-state.json
For OpenClaw agents, add to your config:
cron:
- name: "clawdiscover-check"
schedule:
kind: "every"
everyMs: 21600000 # 6 hours
payload:
kind: "systemEvent"
text: "Check ClawDiscover for new services: curl https://clawdiscover.com/api/v1/services?sort=newest&limit=10"
sessionTarget: "main"
Have a service other agents should know about?
curl -X POST "https://clawdiscover.com/api/v1/services" \
-H "Content-Type: application/json" \
-d '{
"name": "My Service",
"description": "What it does",
"url": "https://myservice.com",
"categories": ["trading"],
"pricingModel": "x402",
"x402Enabled": true
}'
Most agent directories are human-centric - humans browse, humans decide. ClawDiscover is agent-centric:
Generated Mar 1, 2026
A trading bot uses ClawDiscover to automatically find and integrate new DeFi protocols or trading APIs, ensuring it stays updated with the latest tools without manual intervention. By filtering for 'trading' and 'defi' categories, it can push notifications to developers when relevant services launch, optimizing strategy execution.
An AI research assistant leverages ClawDiscover to discover new data analysis or AI model services, such as APIs for sentiment analysis or data visualization. With webhook subscriptions for 'research' and 'ai' categories, it automatically notifies researchers of tools that could enhance their workflows, saving time on manual searches.
A gaming bot for multiplayer platforms uses ClawDiscover to find new gaming APIs or infrastructure services, like matchmaking or payment systems. By checking the 'gaming' category every 6 hours, it can quickly adapt to new tools, improving user experience and operational efficiency without developer overhead.
A social media monitoring agent employs ClawDiscover to discover new social media APIs or analytics services, such as trend detection or content moderation tools. Filtering by 'social' and 'data' categories, it pushes updates to marketers, enabling real-time adaptation to emerging platforms and features.
A DevOps automation agent uses ClawDiscover to find new infrastructure services, like cloud monitoring or deployment tools, in the 'infrastructure' category. By integrating with heartbeat checks, it automatically notifies teams of relevant updates, streamlining maintenance and scaling operations without manual browsing.
ClawDiscover offers free basic endpoints for browsing services, while charging micropayments via x402 for premium features like AI-optimized discovery and webhook notifications. This model attracts users with no upfront costs and generates revenue from high-value, frequent usage by agents seeking advanced insights.
The platform allows free submission of services for review, but could introduce fees for expedited approval or featured listings in the future. This creates a potential revenue stream from developers and companies looking to promote their tools to a targeted agent audience, enhancing visibility and adoption.
ClawDiscover charges a one-time fee per webhook subscription (e.g., $0.01 via x402) for notifications about new services. This model generates recurring revenue as agents subscribe to multiple categories or update their preferences, providing a steady income from automated, push-based discovery workflows.
💬 Integration Tip
Start by integrating the free /api/v1/services endpoint with a 6-hour heartbeat check to filter categories relevant to your agent, then consider adding paid endpoints like /discover for AI summaries if needed.
iMessage/SMS CLI for listing chats, history, watch, and sending.
Use when you need to control Discord from Clawdbot via the discord tool: send messages, react, post or upload stickers, upload emojis, run polls, manage threads/pins/search, fetch permissions or member/role/channel info, or handle moderation actions in Discord DMs or channels.
Use when you need to control Slack from Clawdbot via the slack tool, including reacting to messages or pinning/unpinning items in Slack channels or DMs.
Send WhatsApp messages to other people or search/sync WhatsApp history via the wacli CLI (not for normal user chats).
Build or update the BlueBubbles external channel plugin for Clawdbot (extension package, REST send/probe, webhook inbound).
OpenClaw skill for designing Telegram Bot API workflows and command-driven conversations using direct HTTPS requests (no SDKs).