LocalForge
Allows LocalForge to delegate token-heavy implementation, editing, and test-debug loops to local open-source models served by an Ollama endpoint, while the cloud model reviews only diffs and logs.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@LocalForgeImplement the pagination feature locally and show me the diff"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
LocalForge ⚒️
Model Context Protocol (MCP) bridge for hybrid agentic coding — delegating token-heavy implementation to local open-source models.
Architect in the cloud. Implement locally. Save 80–90% premium API tokens.
💡 The Problem & The Solution
In traditional agentic coding setups, frontier models (OpenAI Codex, Claude 3.7 Sonnet / Opus) execute every step of the workflow: from high-level reasoning to reading thousands of repository lines, running test suites, and fixing compiler errors.
This is extremely expensive and inefficient:
Over 80% of total tokens are consumed in repetitive, mechanical loops (file discovery, syntax fixes, unit-test iterations).
Proprietary codebase context is repeatedly streamed to external cloud APIs.
LocalForge solves this with Hybrid Agentic Coding:
Frontier Model (Cloud): Acts as the Architect and Reviewer (high intelligence, low token volume).
LocalForge (MCP Boundary): Dispatches structured, bounded task specifications and manages local sandboxes.
Local Open-Source Model (Local LLM): Runs high-token implementation, editing, and test-debug loops locally with zero marginal API cost.
Frontier Review: The cloud model inspects only the concise diff, logs, and summary to verify correctness.
┌──────────────────────────────────────────────────────────┐
│ 1. ARCHITECT / REVIEWER │
│ (Codex / Claude) │
│ • Understands requirement • Reviews diff & logs │
└────────────────────────────┬─────────────────────────────┘
│
[MCP Task Specification]
│
▼
┌──────────────────────────────────────────────────────────┐
│ 2. LOCALFORGE (MCP) │
│ • Session continuity • Privacy boundary │
│ • Cross-process locks • Telemetry ledger │
└────────────────────────────┬─────────────────────────────┘
│
[Local Inference Stream]
│
▼
┌──────────────────────────────────────────────────────────┐
│ 3. IMPLEMENTATION WORKER │
│ (DeepSeek V4 Flash / Qwen 2.5 / 3.5) │
│ ┌────────────────────────────────────────────────────┐ │
│ │ 🔄 LOCAL ITERATION LOOP │ │
│ │ Read Repo ➔ Edit Code ➔ Run Tests ➔ Fix Errors │ │
│ └────────────────────────────────────────────────────┘ │
└──────────────────────────────────────────────────────────┘Related MCP server: local-llm-delegation-mcp
✨ Key Features
📉 80–90% Premium Token Reduction: Keeps token-intensive code edits, file indexing, and test-debugging entirely on local hardware.
🛡️ Strict Privacy & Security Boundaries: Sensitive internal files and multi-round diagnostic dumps stay inside your local network.
🔄 Session Continuity: Multi-turn follow-ups (
opencode_followup) resume the same execution session without re-sending the whole repository context.🔒 Cross-Process Repository Locking: Prevents conflicting concurrent writes across multiple agent tabs or clients.
📊 Telemetry & Audit Ledger: Automatic recording of execution duration, files touched, lines added/deleted, and estimated token savings to
state/ledger.jsonl.⚡ Zero-Config Client Registration: Single command setup for Codex, Claude Code, Claude Desktop, and Antigravity.
🛠️ MCP Tools Reference
LocalForge registers 8 native tools over standard Model Context Protocol (stdio/JSON-RPC):
Tool | Description |
| Dispatches a bounded task specification (goal, constraints, interfaces, context) to the local worker. |
| Single blocking wait until a running task reaches terminal state ( |
| Non-blocking status snapshot of an active or finished task. |
| Returns a scoped git diff of changes made by the local worker against the baseline commit. |
| Resumes an existing OpenCode session to fix defects, adjust edge cases, or add tests based on review feedback. |
| Gracefully terminates a running task and its child processes. |
| Checks local model endpoint availability, opencode CLI health, and active model configuration. |
| Queries past delegation outcomes, duration, and success rates for a given repository. |
🚀 Quick Start
1. Prerequisites
Node.js:
>= 20.0.0OpenCode CLI: Installed and accessible in
PATH(npm i -g opencode-aior binary)Local Inference Model: A running OpenAI-compatible endpoint (e.g. DeepSeek V4 Flash, Qwen 2.5/3.5 on vLLM, Ollama, SGLang, or dual DGX Spark clusters).
2. Install & Build
git clone https://github.com/aditya1503/LocalForge.git
cd LocalForge
npm install
npm run build3. Verify Health
npm run dev
# or run health check
tsx tests/v2.test.ts4. Connect to Your AI Client
LocalForge includes an automated client registrar script:
# Register with OpenAI Codex / Antigravity
node scripts/register-client.mjs antigravity
# Register with Claude Code
node scripts/register-client.mjs claude-code
# Register with Claude Desktop
node scripts/register-client.mjs claude-desktop⚙️ Configuration
Set environment variables in your environment or client config:
Variable | Default | Description |
|
| Model identifier passed to OpenCode. |
|
| Health endpoint for the local inference server. |
| Current working directory | Root directory whitelist to prevent path traversal. |
|
| Maximum execution time before automatic termination. |
📊 Telemetry & Reporting
Every finished task automatically records telemetry into state/ledger.jsonl. Run the built-in rollup tool to analyze savings:
npm run rollupExample Output:
=== LocalForge Telemetry Rollup ===
Total Tasks: 42
Success Rate: 95.2%
Avg Task Duration: 28.4s
Estimated Cloud Tokens Saved: ~1.85M tokens
Top Task Classes: unit-test-generation, bugfix, refactoring🎨 Interactive Architecture Infographic
This repository includes a standalone interactive HTML infographic diagram visualizing the complete MCP delegation flow:
open index.html📄 License
MIT License. Designed and maintained by ADIS (Artificially Developed Intelligence Services).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables Claude to delegate coding tasks to local Ollama models, reducing API token usage by up to 98.75% while leveraging local compute resources. Supports code generation, review, refactoring, and file analysis with Claude providing oversight and quality assurance.29422AGPL 3.0
- AlicenseAqualityDmaintenanceOptimizes token costs by intelligently delegating low-complexity tasks to local LLMs via LiteLLM, enabling cost-effective development workflows.31MIT
- FlicenseNot gradedqualityBmaintenanceRoutes code generation tasks between local models and Claude Cloud, optimizing cost by handling simple tasks locally and reserving cloud thinking for complex tasks.
- AlicenseBqualityCmaintenanceEnables coding agents like Claude Code and Codex to offload boilerplate generation, summarization, and other bounded text tasks to local or cheap cloud LLMs, keeping the frontier agent in charge of judgment and code edits.92MIT
Related MCP Connectors
Agentic code review, no signup to try: reality gates + frontier-model review, with veto.
Coding agents from Claude Code, Cursor and Codex claim jobs and lock files on one shared board.
Reduces AI Agent token usage by 40% via three-stage SOP workflow.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aditya1503/MCPRelay'
If you have feedback or need assistance with the MCP directory API, please join our Discord server