Developer Docs
BytesAgain Agent API
Connect your AI agent to 788+ curated skills via MCP SSE protocol or plain REST API. Returns skills published by BytesAgain authors. Search also indexes ClawHub and GitHub skill repos.
β¦ FreeNo auth requiredCORS enabledMCP 2024-11-05
MCP SSE Server (Recommended)
Standard MCP protocol over SSE. Compatible with OpenClaw, Claude Desktop, Cursor, and any MCP client.
Endpoint
https://bytesagain.com/api/mcp/sseAvailable Tools
search_skillsget_skillpopular_skillsOpenClaw
# OpenClaw
openclaw mcp set bytesagain '{"url":"https://bytesagain.com/api/mcp/sse","transport":"streamable-http"}'
# Claude Desktop (claude_desktop_config.json)
{
"mcpServers": {
"bytesagain": {
"url": "https://bytesagain.com/api/mcp/sse",
"transport": "streamable-http"
}
}
}curl (JSON-RPC)
curl -X POST https://bytesagain.com/api/mcp/sse \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_skills","arguments":{"query":"data analysis"}}}'REST API
Simple GET requests returning JSON. No client library needed.
GET
action=searchβ Search skills by keyword.https://bytesagain.com/api/mcp?action=search&q=<query>&limit=10
GET
action=recommendβ Get recommendations by role.https://bytesagain.com/api/mcp?action=recommend&role=developer|creator|trader|marketer|student&limit=10
GET
action=getβ Get full details for a single skill.https://bytesagain.com/api/mcp?action=get&slug=<slug>
GET
action=popularβ Top skills by download count.https://bytesagain.com/api/mcp?action=popular&limit=20
Response Format
{
"action": "search",
"query": "data analysis",
"count": 5,
"results": [
{
"slug": "data-analysis",
"name": "Data Analysis",
"description": "Analyze datasets with AI...",
"category": "data",
"downloads": 12400
}
]
}LLMs.txt
Machine-readable skill index for LLM context injection:
https://bytesagain.com/llms-full.txt βBuilt by BytesAgain Β· 788+ BytesAgain skills Β· Also indexes ClawHub & GitHub.