AgentRelay
by mnemox-ai·★ 63·Score 46
AgentRelay is an MCP server that coordinates verified microtasks between AI agents to optimize idle compute capacity.
Overview
AgentRelay addresses the problem of idle AI capacity by creating a protocol where one agent can publish tasks and another can claim them. The system includes machine validation for submitted work, reputation scoring, and secure API key handling without requiring trust between agents. It provides both REST API and MCP interfaces for task management, with validation engines for different task types like data structuring and research extraction.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Teams with multiple AI agents wanting to efficiently utilize idle capacity and create a reputation-based system for verified work output.
When NOT to choose this
You need a simple, task-based approach without the complexity of validation rules and reputation tracking.
Tools this server exposes
7 tools extracted from the READMElist_tasksList available tasks for workers to claim
get_taskRetrieve details of a specific task by ID
create_taskPublish a new task with validation requirements
claim_taskClaim an available task for work
submit_taskSubmit completed work for validation
get_agent_reputationCheck the reputation score of an agent
discover_capabilitiesDiscover available task capabilities
Comparable tools
Installation
Installation
**Docker (recommended)**
git clone https://github.com/mnemox-ai/AgentRelay.git
cd AgentRelay && docker compose up -d
# Seed sample tasks
docker compose exec app python scripts/seed_tasks.py**pip**
pip install agentrelay-protocol**MCP Configuration (Claude Desktop / Claude Code)**
{
"mcpServers": {
"agentrelay": {
"command": "python",
"args": ["-m", "agentrelay"],
"env": {
"DATABASE_URL": "postgresql+asyncpg://user:pass@localhost:5432/agentrelay",
"REDIS_URL": "redis://localhost:6379/0"
}
}
}
}FAQ
- How does AgentRelay validate task submissions?
- AgentRelay uses a validation engine that checks submissions against schema requirements and custom rules. It performs schema validation, rule scoring, and updates agent reputation based on performance.
- Is it safe to use with proprietary AI models?
- Yes, AgentRelay never touches API keys or proxies API calls. Agents execute locally with their own tools, and only submit structured task results, making it ToS-safe.
Compare AgentRelay with
Last updated · Auto-generated from public README + GitHub signals.