返回顶部
a

agorahubAgoraHub代理注册

AgoraHub agent registry — discover and use 14+ verified AI agents for dev tasks like hashing, encoding, formatting, and more. No signup needed for demo agents.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
813
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

agorahub

AgoraHub — AI代理注册中心

AgoraHub是一个开放的代理注册中心,提供14个以上经过验证的演示代理,您可以立即使用,无需注册。对于社区代理,请访问 https://agorahub.dev/dashboard/api-keys 获取API密钥。

基础URL: https://agorahub.dev



1. 发现可用代理

列出所有作为MCP工具暴露的代理:

bash
curl -s https://agorahub.dev/api/mcp/tools | jq .tools[] | {name, description}

按标签筛选

bash
curl -s https://agorahub.dev/api/mcp/tools?tags=crypto | jq .tools[] | {name, description}

按名称/描述搜索

bash
curl -s https://agorahub.dev/api/mcp/tools?q=hash | jq .tools[] | {name, description}



2. 调用代理

所有14个演示代理无需API密钥即可使用。对于社区代理,请添加 -H Authorization: Bearer $AGORAHUBAPIKEY。

通用调用格式

bash
curl -s -X POST https://agorahub.dev/api/mcp/tools/call \
-H Content-Type: application/json \
-d {name:agora<代理标识><技能ID>,arguments:{...}} | jq



3. 代理快速参考

回声代理

返回带有时间戳的消息。 bash curl -s -X POST https://agorahub.dev/api/mcp/tools/call \ -H Content-Type: application/json \ -d {name:agoraecho-agentecho,arguments:{message:hello world}} | jq

哈希生成器

生成加密哈希(md5, sha1, sha256, sha512)。 bash curl -s -X POST https://agorahub.dev/api/mcp/tools/call \ -H Content-Type: application/json \ -d {name:agorahash-generatorhash,arguments:{text:hello,algorithm:sha256}} | jq

一次性使用所有算法生成哈希:
bash
curl -s -X POST https://agorahub.dev/api/mcp/tools/call \
-H Content-Type: application/json \
-d {name:agorahash-generatorhash-all,arguments:{text:hello}} | jq

密码生成器

生成具有可自定义选项的安全密码。 bash curl -s -X POST https://agorahub.dev/api/mcp/tools/call \ -H Content-Type: application/json \ -d {name:agorapassword-generatorgenerate,arguments:{length:20,count:3,symbols:true}} | jq

JSON格式化器

验证、美化打印或压缩JSON。 bash curl -s -X POST https://agorahub.dev/api/mcp/tools/call \ -H Content-Type: application/json \ -d {name:agorajson-formatterformat,arguments:{json:{\key\:\value\,\num\:42}}} | jq

Base64编解码器

将文本编码为Base64: bash curl -s -X POST https://agorahub.dev/api/mcp/tools/call \ -H Content-Type: application/json \ -d {name:agorabase64-codecencode,arguments:{text:hello world}} | jq

将Base64解码回文本:
bash
curl -s -X POST https://agorahub.dev/api/mcp/tools/call \
-H Content-Type: application/json \
-d {name:agorabase64-codecdecode,arguments:{text:aGVsbG8gd29ybGQ=}} | jq

UUID生成器

生成v4或v7格式的UUID。 bash curl -s -X POST https://agorahub.dev/api/mcp/tools/call \ -H Content-Type: application/json \ -d {name:agorauuid-generatorgenerate,arguments:{version:v4,count:5}} | jq

正则表达式测试器

测试正则表达式模式与文本的匹配。 bash curl -s -X POST https://agorahub.dev/api/mcp/tools/call \ -H Content-Type: application/json \ -d {name:agoraregex-testertest,arguments:{pattern:\\d+,text:abc 123 def 456}} | jq

JWT解码器

解码JWT令牌(不进行验证)。 bash curl -s -X POST https://agorahub.dev/api/mcp/tools/call \ -H Content-Type: application/json \ -d {name:agorajwt-decoderdecode,arguments:{token:eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c}} | jq

Markdown转HTML

将Markdown文本转换为HTML。 bash curl -s -X POST https://agorahub.dev/api/mcp/tools/call \ -H Content-Type: application/json \ -d {name:agoramarkdown-to-htmlconvert,arguments:{markdown:# Hello\n\nBold and italic}} | jq

文本统计

分析文本的字数、阅读时间等。 bash curl -s -X POST https://agorahub.dev/api/mcp/tools/call \ -H Content-Type: application/json \ -d {name:agoratext-statsanalyze,arguments:{text:The quick brown fox jumps over the lazy dog. This is a sample text for analysis.}} | jq

Lorem Ipsum生成器

生成占位文本。 bash curl -s -X POST https://agorahub.dev/api/mcp/tools/call \ -H Content-Type: application/json \ -d {name:agoralorem-ipsumgenerate,arguments:{format:paragraphs,count:2}} | jq

CSV/JSON转换器

将CSV转换为JSON: bash curl -s -X POST https://agorahub.dev/api/mcp/tools/call \ -H Content-Type: application/json \ -d {name:agoracsv-json-convertercsv-to-json,arguments:{csv:name,age\nAlice,30\nBob,25}} | jq

将JSON转换为CSV:
bash
curl -s -X POST https://agorahub.dev/api/mcp/tools/call \
-H Content-Type: application/json \
-d {name:agoracsv-json-converterjson-to-csv,arguments:{data:[{name:Alice,age:30},{name:Bob,age:25}]}} | jq

颜色转换器

在Hex、RGB和HSL之间进行转换。 bash curl -s -X POST https://agorahub.dev/api/mcp/tools/call \ -H Content-Type: application/json \ -d {name:agoracolor-converterconvert,arguments:{color:#ff6600}} | jq

时间戳转换器

在Unix时间戳、ISO 8601和人类可读日期之间进行转换。 bash curl -s -X POST https://agorahub.dev/api/mcp/tools/call \ -H Content-Type: application/json \ -d {name:agoratimestamp-converterconvert,arguments:{timestamp:now}} | jq

4. 错误处理

检查HTTP状态码和响应中的isError字段:

  • - 200 — 成功。解析content[0].text获取结果。
  • 400 — 错误请求。检查error字段获取详细信息(缺少工具名称、格式无效)。
  • 401 — 需要身份验证。仅适用于非演示代理。设置AGORAHUBAPIKEY。
  • 404 — 未找到代理或技能。使用发现端点列出可用工具。
  • 429 — 请求频率限制。检查Retry-After头部。
  • 500 — 内部错误。重试或在 https://github.com/Codevena

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 agorahub-1776419935 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 agorahub-1776419935 技能

通过命令行安装

skillhub install agorahub-1776419935

下载

⬇ 下载 agorahub v1.0.0(免费)

文件大小: 2.88 KB | 发布时间: 2026-4-17 18:11

v1.0.0 最新 2026-4-17 18:11
Initial release: 14 demo agents, zero-auth access, discovery + search

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部