agent3-hub
Universal AI resource registry — search and invoke agents, MCP servers, and APIs through a single MCP endpoint. Includes Telegram content search, Google search, X/Twitter search, and more.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/agent3-666/agent3-hubAgent3 Hub
Agent3 Hub is an open registry for AI agents, MCP servers, and APIs. It exposes every registered resource as a tool via a single MCP endpoint — connect once, invoke anything.
Endpoint: https://hub.agent3.me/api/mcp
Protocol: MCP 2025-03-26 (Streamable HTTP)
Get a free API key: https://hub.agent3.me/auth/signup
Setup
Claude Desktop / any MCP client
Add to your claude_desktop_config.json:
{
"mcpServers": {
"agent3": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://hub.agent3.me/api/mcp"],
"env": {
"AGENT3_API_KEY": "a2a_your_key_here"
}
}
}
}
Direct HTTP (curl)
curl -X POST https://hub.agent3.me/api/mcp \
-H "Authorization: Bearer $AGENT3_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "resources_search",
"arguments": { "query": "telegram search" }
}
}'
Anthropic SDK (Python)
import anthropic
client = anthropic.Anthropic()
response = client.beta.messages.create(
model="claude-opus-4-6",
max_tokens=1024,
mcp_servers=[{
"type": "url",
"url": "https://hub.agent3.me/api/mcp",
"headers": {"Authorization": "Bearer a2a_your_key_here"}
}],
messages=[{"role": "user", "content": "Search Telegram for 'AI agents 2026'"}]
)
Available Tools
| Tool | Description | Auth |
|---|---|---|
resources_search | Search the registry by keyword or semantic query | Required |
resources_invoke | Invoke any registered resource by ID + operation | Required |
resources_get | Get full details of a resource by ID | Required |
resources_resolve | Resolve a resource endpoint URL | Required |
resources_stats | Get usage stats for a resource | Required |
agents_search | Text search across registered agents | Required |
agents_semantic_search | Semantic/vector search across agents | Required |
agents_get | Get agent details by ID | Required |
agents_invoke | Invoke an A2A agent directly | Required |
agents_register | Register a new agent in the hub | Required |
tools/list | List all available tools | Public |
resources/list | List all resources | Public |
initialize | Server info and capabilities | Public |
Example: Search Telegram Content
curl -X POST https://hub.agent3.me/api/mcp \
-H "Authorization: Bearer $AGENT3_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "resources_invoke",
"arguments": {
"resourceId": "a23cc5a9-0bfb-4466-acbe-fbc9af723ba4",
"operationId": "search-content",
"input": { "query": "AI news" }
}
}
}'
Example: Search Google
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-agent3-666-agent3-hub": {
"enabled": true,
"auto_update": true
}
}
}Tags
Related Skills
xpoz-social-search
Search Twitter, Instagram, and Reddit posts in real time. Find social media mentions, track hashtags, discover influencers, and analyze engagement — 1.5B+ posts indexed. Social listening, brand monitoring, and competitor research made easy for AI agents.
Lead Radar
Every morning, scans Reddit, Hacker News, Indie Hackers, Stack Overflow, Quora, Hashnode, Dev.to, GitHub, and Lobsters for people actively asking for what you sell. Delivers the top 10 buying-intent leads to your Telegram with a pre-drafted reply. Powered by Gemini 2.5 Flash.
Zerion Api Skill
Skill by abishekdharshan
scrapebadger
Web scraping platform — Twitter/X data, Vinted marketplace, and general web scraping API
clinicaltrials-gov-parser
Monitor and summarize competitor clinical trial status changes from ClinicalTrials.gov. Trigger: When user asks to track clinical trials, monitor trial status changes, get updates on specific trials, or analyze competitor trial activities. Use cases: Pharma competitive intelligence, trial monitoring, status tracking, recruitment updates, completion alerts.