← 返回 Skills 市场
agent3-666

Agent3 Hub

作者 agent3-666 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
270
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install 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...
使用说明 (SKILL.md)

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

安全使用建议
Plain-language actions and questions before installing: - Understand what you're trusting: this skill connects your agent to a third-party MCP endpoint (hub.agent3.me). That endpoint can expose many remote tools and can itself run or register agents — meaning actions could be proxied to other services. - Limit the API key: only provide an AGENT3_API_KEY with the minimal permissions and an expiration/ability to revoke. Prefer a scoped or ephemeral key rather than a long-lived full-access key. - Verify the hub: the registry metadata lacks a homepage/source. Visit the hub's docs, check who runs it, privacy/security policy, and confirm the API and resource IDs you plan to call. - Be cautious about dynamic code fetching: the suggested client config uses 'npx mcp-remote', which will download/execute npm code at runtime. Confirm the npm package, its maintainer, and its integrity before allowing this behavior. - Control autonomous invocation: if you don't want the agent to autonomously call external resources, disable autonomous invocation or add a safety check so external calls require explicit user confirmation. - Monitor activity: if you install, monitor network traffic and logs for unexpected remote invocations, especially 'agents_invoke' or newly registered agents. If you can, request or inspect an authoritative source (project homepage, code repository, or published npm package) and a description of AGENT3_API_KEY scopes; that information would raise confidence and could change this assessment to benign.
功能分析
Type: OpenClaw Skill Name: agent3-hub Version: 1.0.0 The skill bundle provides a legitimate interface to 'Agent3 Hub', a registry for AI agents and MCP servers. It utilizes the Model Context Protocol (MCP) to allow an agent to search and invoke remote resources via the endpoint https://hub.agent3.me/api/mcp. The implementation follows standard patterns, requires a dedicated API key (AGENT3_API_KEY), and contains no evidence of malicious intent, data exfiltration, or prompt injection.
能力评估
Purpose & Capability
The name/description (Agent3 Hub registry + MCP endpoint) lines up with the runtime instructions (how to call the hub and which tools it exposes). However the SKILL.md suggests using 'npx mcp-remote' in client config which implies dynamic code download at runtime; the skill metadata does not declare a required binary (npx) or an install step. The skill's source/homepage are missing, which reduces traceability.
Instruction Scope
The instructions show how to authenticate and call the hub's MCP endpoint and list operations that include 'agents_invoke' and 'agents_register' — i.e., the agent can invoke arbitrary registered resources and register new agents via the hub. That is coherent with a registry but grants broad remote-execution capability and the potential to relay or exfiltrate data to third-party resources. The examples do not instruct reading local files or other env vars, which is good, but the broadness of the available operations is a functional risk.
Install Mechanism
No install spec and no code files (lowest install risk). However, the suggested client config uses 'npx ... mcp-remote' which will dynamically fetch and run code from the npm ecosystem at runtime. That behavior is not declared in the metadata and effectively causes remote code execution on the client when the MCP client starts. This is an operational risk to consider even though the skill itself doesn't install files.
Credentials
The skill only requests a single AGENT3_API_KEY, which is proportionate to authenticating to a third-party hub. There are no unrelated secrets requested. Note that that single key likely grants broad hub privileges (search/invoke/register), so its scope matters — use a least-privilege key if possible.
Persistence & Privilege
always is false (good). Model invocation is permitted (default), so the agent could autonomously call the hub and invoke registered resources. Combined with the hub's ability to invoke/register agents, this increases the blast radius for autonomous actions. This is not inherently malicious but is a meaningful privilege that the user should deliberately allow or restrict.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install agent3-hub
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /agent3-hub 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of Agent3 Hub: a universal AI resource registry and MCP endpoint. - Enables searching and invoking agents, MCP servers, and APIs (including Telegram, Google, and X/Twitter search) through a single interface. - Provides a suite of tools for resource and agent search, invocation, registration, and stats. - Supports integration via Claude Desktop, direct HTTP (curl), and Anthropic SDK. - Includes public and authenticated tool endpoints, with free-tier rate limits for popular search tools.
元数据
Slug agent3-hub
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

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。

💬 留言讨论