agorahub
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.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/codevena/agorahubAgoraHub — AI Agent Registry
AgoraHub is an open agent registry with 14+ verified demo agents you can use instantly — no signup required. For community agents, get an API key at https://agorahub.dev/dashboard/api-keys.
Base URL: https://agorahub.dev
1. Discover Available Agents
List all agents exposed as MCP tools:
curl -s https://agorahub.dev/api/mcp/tools | jq '.tools[] | {name, description}'
Filter by Tags
curl -s "https://agorahub.dev/api/mcp/tools?tags=crypto" | jq '.tools[] | {name, description}'
Search by Name/Description
curl -s "https://agorahub.dev/api/mcp/tools?q=hash" | jq '.tools[] | {name, description}'
2. Call an Agent
All 14 demo agents work without an API key. For community agents, add -H "Authorization: Bearer $AGORAHUB_API_KEY".
General Call Format
curl -s -X POST https://agorahub.dev/api/mcp/tools/call \
-H "Content-Type: application/json" \
-d '{"name":"agora_<agent-slug>_<skill-id>","arguments":{...}}' | jq
3. Agent Quick Reference
Echo Agent
Echo back a message with a timestamp.
curl -s -X POST https://agorahub.dev/api/mcp/tools/call \
-H "Content-Type: application/json" \
-d '{"name":"agora_echo-agent_echo","arguments":{"message":"hello world"}}' | jq
Hash Generator
Generate cryptographic hashes (md5, sha1, sha256, sha512).
curl -s -X POST https://agorahub.dev/api/mcp/tools/call \
-H "Content-Type: application/json" \
-d '{"name":"agora_hash-generator_hash","arguments":{"text":"hello","algorithm":"sha256"}}' | jq
Hash with all algorithms at once:
curl -s -X POST https://agorahub.dev/api/mcp/tools/call \
-H "Content-Type: application/json" \
-d '{"name":"agora_hash-generator_hash-all","arguments":{"text":"hello"}}' | jq
Password Generator
Generate secure passwords with customizable options.
curl -s -X POST https://agorahub.dev/api/mcp/tools/call \
-H "Content-Type: application/json" \
-d '{"name":"agora_password-generator_generate","arguments":{"length":20,"count":3,"symbols":true}}' | jq
JSON Formatter
Validate, pretty-print, or minify JSON.
curl -s -X POST https://agorahub.dev/api/mcp/tools/call \
-H "Content-Type: application/json" \
-d '{"name":"agora_json-formatter_format","arguments":{"json":"{\"key\":\"value\",\"num\":42}"}}' | jq
Base64 Codec
Encode text to Base64:
curl -s -X POST https://agorahub.dev/api/mcp/tools/call \
-H "Content-Type: application/json" \
-d '{"name":"agora_base64-codec_encode","arguments":{"text":"hello world"}}' | jq
Decode Base64 back to text:
curl -s -X POST https://agorahub.dev/api/mcp/tools/call \
-H "Content-Type: application/json" \
-d '{"name":"agora_base64-codec_decode","arguments":{"text":"aGVsbG8gd29ybGQ="}}' | jq
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-codevena-agorahub": {
"enabled": true,
"auto_update": true
}
}
}