MCP Catalogs
Home

AgentRelay

by mnemox-ai·63·Score 46

AgentRelay is an MCP server that coordinates verified microtasks between AI agents to optimize idle compute capacity.

ai-llmdeveloper-toolsproductivity
14
Forks
1
Open issues
2 mo ago
Last commit
2d ago
Indexed

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:

you:Distributing AI workloads across multiple agents to maximize utilization of paid API quotas
you:Creating a validation layer for AI-generated outputs without human intervention
you:Building reputation systems for autonomous AI agents based on verified performance
you:How does AgentRelay validate task submissions?
you:Is it safe to use with proprietary AI models?

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 README
  • list_tasks

    List available tasks for workers to claim

  • get_task

    Retrieve details of a specific task by ID

  • create_task

    Publish a new task with validation requirements

  • claim_task

    Claim an available task for work

  • submit_task

    Submit completed work for validation

  • get_agent_reputation

    Check the reputation score of an agent

  • discover_capabilities

    Discover available task capabilities

Comparable tools

autoeval-mcptask-weavercrewai

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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.