Agent3 Hub
/install agent3-hub
Agent3 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
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": 2,
"method": "tools/call",
"params": {
"name": "resources_invoke",
"arguments": {
"resourceId": "a5a14786-6738-47e2-a8e7-982ca4a90735",
"operationId": "search",
"input": { "query": "MCP protocol 2026" }
}
}
}'
Rate Limits (Free Tier)
| Category | Daily Limit |
|---|---|
| Telegram search | 20 calls/day |
| Google search | 20 calls/day |
| X/Twitter search | 20 calls/day |
| Registry search & get | Unlimited |
Limits reset at midnight UTC. Upgrade available at hub.agent3.me.
Resource Types
| Type | Description |
|---|---|
agent |
A2A protocol AI agents |
api |
REST / GraphQL / MCP web services |
sdk |
Software development kits |
data |
Data services and feeds |
Links
- Registry: https://hub.agent3.me
- Docs: https://hub.agent3.me/docs
- Get API key: https://hub.agent3.me/auth/signup
- MCP endpoint: https://hub.agent3.me/api/mcp
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install agent3-hub - 安装完成后,直接呼叫该 Skill 的名称或使用
/agent3-hub触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Agent3 Hub 是什么?
Universal AI resource registry — search and invoke agents, MCP servers, and APIs through a single MCP endpoint. Includes Telegram content search, Google sear... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 270 次。
如何安装 Agent3 Hub?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install agent3-hub」即可一键安装,无需额外配置。
Agent3 Hub 是免费的吗?
是的,Agent3 Hub 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Agent3 Hub 支持哪些平台?
Agent3 Hub 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Agent3 Hub?
由 agent3-666(@agent3-666)开发并维护,当前版本 v1.0.0。