Mcp Agent Forge banner
Cloud-Eye-Prime Cloud-Eye-Prime

Mcp Agent Forge

AI community

Description

Dispatch AI coding agents (Claude Code, Copilot, OpenCode) as MCP tools

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

MCP Agent Forge

**Dispatch AI coding agents as MCP tools.** Fan out work to Claude Code, GitHub Copilot, and OpenCode from any MCP client -- Claude Desktop, your own orchestrator, or anything that speaks MCP.

**Includes Bounded Plan safety** -- constrain what agents can touch before they execute.

You (MCP Client)
    |
    |-- forge_plan("add error handling", no_touch=["auth.py", ".env"])
    |       -> preview: "Agent will touch 3 files, protect 2"
    |
    |-- forge_dispatch_plan("claude_code", "add error handling", ...)
    |       -> job_id: "forge-a1b2c3d4" (bounded execution)
    |
    |-- forge_status("forge-a1b2c3d4")
            -> status: "complete", bounded: true

Why?

You're already talking to Claude Desktop (or another MCP host). You want to delegate coding tasks to specialized agents without leaving your conversation. Agent Forge gives your orchestrator hands -- and **Bounded Plans** make sure those hands don't break things.

  • Claude Code -- Agentic, multi-file, reads CLAUDE.md. Best for complex tasks. ~$0.01-0.40/task.
  • GitHub Copilot CLI -- Free with GitHub Pro. Great for structured analysis and read-only work.
  • OpenCode -- Gemini Flash via OpenRouter. ~$0.003/task. Fast and cheap.

Install

# Clone
git clone https://github.com/Cloud-Eye-Prime/mcp-agent-forge.git
cd mcp-agent-forge

# Install dependency
pip install fastmcp

# Verify agents are available
claude --version        # Claude Code
github-copilot-cli      # Copilot (optional)
opencode --version      # OpenCode (optional)

You need at least one agent installed. Claude Code is the primary.

Install Claude Code

npm install -g @anthropic-ai/claude-code

Install OpenCode (optional)

npm install -g opencode

Configure with Claude Desktop

Add to your Claude Desktop MCP config (`claude_desktop_config.json`):

{
  "mcpServers": {
    "agent-forge": {
      "command": "python",
      "args": ["/absolute/path/t