local-forge

local-forge

Enables AI coding agents to route tasks to local GPU models via a dynamic heuristic classifier, tracking real-time token dollar savings.

Category
访问服务器

README

Local Agent Forge (@nymrel/local-forge)

License: MIT Local AI MCP Compatible TypeScript / Python Parity

Zero-cloud local GPU orchestrator, dynamic heuristic model router, and Model Context Protocol (MCP) server that connects local AI models (Ollama, vLLM, LM Studio, ComfyUI, Whisper) directly to agentic workflows with real-time token savings tracking.


🏛️ Entity Trust & Provenance

{
  "@context": "https://schema.org",
  "@type": "SoftwareSourceCode",
  "name": "local-agent-forge",
  "alternateName": "@nymrel/local-forge",
  "operatingSystem": "Cross-platform (Windows, Linux, macOS)",
  "applicationCategory": "DeveloperApplication",
  "license": "https://opensource.org/licenses/MIT",
  "author": {
    "@type": "Organization",
    "name": "Nymrel",
    "parentOrganization": {
      "@type": "Organization",
      "name": "JalenBuilds LLC",
      "legalName": "JalenBuilds LLC",
      "url": "https://nymrel.com"
    },
    "email": "contact@nymrel.com"
  },
  "description": "Zero-cloud local GPU orchestrator and dynamic 85% reasoning escalation model router for agentic workflows."
}

⚡ Architecture Overview

local-agent-forge serves as an intelligent local gateway between agentic coding tools (Claude Code, Cursor, Codex) and your physical local GPU hardware. Routine development tasks (boilerplate, formatting, unit tests, regex, CRUD, syntax refactoring) are classified and executed locally at $0 compute cost. Only ultra-complex tasks demanding deep multi-layered reasoning (> 85% heuristic complexity threshold) or formal verification are escalated to metered cloud frontier models.

flowchart TD
    Agent["Agentic Client<br/>(Claude Code / Cursor / Codex)"]
    
    subgraph ForgeCore ["Local Agent Forge Gateway"]
        MCP["MCP JSON-RPC Server / OpenAI Proxy"]
        Classifier["Heuristic Task Classifier<br/>(AST, Tokens, Triggers)"]
        Router{"Complexity Score > 85%?"}
        Ledger["Token Economics Ledger<br/>(Real-Time Dollar Savings)"]
    end

    subgraph LocalCompute ["Zero-Cloud Local GPU Compute ($0)"]
        Ollama["Ollama (:11434)<br/>Qwen 2.5 Coder 7B/14B"]
        vLLM["vLLM (:8000)<br/>Llama 3.3 70B"]
        LMStudio["LM Studio (:1234)<br/>DeepSeek-R1 Distill"]
        ComfyUI["ComfyUI (:8188)<br/>Graph Diffusion"]
        Whisper["Local Whisper (:8080)<br/>Speech-to-Text"]
    end

    subgraph CloudFrontier ["Cloud Frontier (Metered)"]
        Cloud["Claude 3.5 Sonnet / GPT-5 Sol<br/>(Frontier Reasoning)"]
    end

    Agent --> MCP
    MCP --> Classifier
    Classifier --> Router
    Router -- "<= 85% Complexity (Routine/Code)" --> LocalCompute
    Router -- "> 85% Complexity (Formal Proofs/Novel Crypto)" --> Cloud
    LocalCompute --> Ledger
    Cloud --> Ledger
    Ledger --> Agent

🚀 Key Features

  • 🟢 Zero-Cloud Privacy & $0 Marginal Token Cost: Execute unlimited inferences on your RTX, Apple Silicon, or local datacenter GPU without data leaving 127.0.0.1.
  • 🧠 Dynamic Heuristic Model Router: Continuously evaluates task complexity (0.00 to 1.00). Routine code, unit testing, formatting, and refactoring run locally at $0; cloud frontier escalation is strictly gated behind an 85% reasoning threshold.
  • 🔌 Unified Local Inference Adapters: Built-in connectors for Ollama (:11434), vLLM (:8000), LM Studio (:1234), ComfyUI (:8188), and Whisper (:8080).
  • 📊 Real-Time Token Economics Ledger: Instant calculation of prompt & completion tokens, local cost ($0.00), baseline cloud frontier costs (Claude 3.5 Sonnet, GPT-4o, Claude 3 Opus), and cumulative net dollar savings.
  • 🛠️ Model Context Protocol (MCP) Standard Server: Plug-and-play stdio MCP server exposing local models and tools to Claude Code, Cursor, and Codex.
  • ⚡ Zero-Dependency Core & Dual-Engine Parity: Lightweight TypeScript (@nymrel/local-forge) and Python (local-agent-forge) engines with 100% test coverage and no heavy runtime dependencies.

📦 Installation & Quickstart

Node.js / TypeScript

# Global CLI Installation
npm install -g @nymrel/local-forge

# Or run directly with npx
npx @nymrel/local-forge --help

Python

# Install Python package
pip install -e .

# CLI usage
local-forge-py --help

💻 CLI Commands & Usage

1. Probe Local Inference Engine Health

Inspect all local inference engines running on localhost:

local-forge health
🔍 Probing Local AI Inference Servers on localhost...

Adapter Status:
----------------------------------------------------------------------
🟢 ONLINE  | Ollama       (:11434) | 12ms     | Models: qwen2.5-coder:7b, deepseek-r1:14b
🔴 OFFLINE | vLLM         (:8000 ) | N/A      | Models: None
🟢 ONLINE  | LM Studio    (:1234 ) | 8ms      | Models: local-model
🔴 OFFLINE | ComfyUI      (:8188 ) | N/A      | Models: None
🔴 OFFLINE | Whisper      (:8080 ) | N/A      | Models: None
----------------------------------------------------------------------

2. Test Dynamic Routing & 85% Escalation Heuristic

Evaluate how the router classifies a prompt and checks whether it runs locally or escalates:

# Routine coding task -> Routes locally at $0 cost
local-forge route "Write a TypeScript function to parse JSON with error handling and JSDoc"
======================================================================
                     DYNAMIC ROUTING DECISION                         
======================================================================
  Route Target       : [ LOCAL ]
  Target Model       : qwen2.5-coder:7b
  Inference Engine   : ollama (http://127.0.0.1:11434)
  Complexity Score   : 25.0% (Threshold: 85%)
  Task Bucket        : ROUTINE [Category: code_gen]
  Triggers Detected  : low:documentation, low:data_serialization
  Cloud Escalated    : NO ($0 Local GPU)
  Est. Tokens        : 22 prompt + 400 comp = 422 total
  Est. Dollar Savings: $0.00607 vs Claude 3.5 Sonnet
  Rationale          : Task complexity score (0.25) is within local GPU capability envelope (<= 85%). Routing to local GPU at $0 token cost.
======================================================================
# High-reasoning task -> Escalates to Cloud Frontier
local-forge route "Write a formal verification proof in Lean 4 for distributed consensus correctness"
======================================================================
                     DYNAMIC ROUTING DECISION                         
======================================================================
  Route Target       : [ CLOUD ]
  Target Model       : claude-3-5-sonnet
  Inference Engine   : cloud_frontier (https://api.anthropic.com/v1)
  Complexity Score   : 90.0% (Threshold: 85%)
  Task Bucket        : FRONTIER_REASONING [Category: deep_reasoning]
  Triggers Detected  : high:formal_verification, high:distributed_consensus
  Cloud Escalated    : YES (Reasoning complexity score (0.9) exceeds 85% threshold)
  Est. Tokens        : 24 prompt + 400 comp = 424 total
  Est. Dollar Savings: $0.00000 vs Claude 3.5 Sonnet
  Rationale          : Task complexity score (0.9) exceeds 85% threshold due to high:formal_verification, high:distributed_consensus. Escalating to cloud frontier.
======================================================================

3. Start Local OpenAI-Compatible Proxy Server

local-forge start --port 4000

This boots an OpenAI-compatible server at http://127.0.0.1:4000/v1/chat/completions that dynamically routes requests locally while tracking dollar savings.

4. Display Token Savings Ledger Dashboard

local-forge stats
================================================================================
                    LOCAL AGENT FORGE - TOKEN ECONOMICS LEDGER                  
================================================================================
  Baseline Benchmark       : Claude 3.5 Sonnet ($3/$15 per 1M)
  Total Requests Handled   : 1,482
  Local GPU Dispatched     : 1,365 (92.1%) -> $0 Compute
  Cloud Escalated          : 117
--------------------------------------------------------------------------------
  Total Tokens Processed   : 2,419,800 tokens
    - Prompt Tokens        : 1,810,400
    - Completion Tokens    : 609,400
--------------------------------------------------------------------------------
  Actual Compute Spent     : $2.4180
  Hypothetical Cloud Cost  : $14.5722
  NET DOLLARS SAVED        : $12.1542
  Projected Savings / 1k Tx: $8.20
--------------------------------------------------------------------------------
  Avg Latency              : 412 ms
  Avg GPU Throughput       : 52.4 tokens/sec
================================================================================

🔌 Model Context Protocol (MCP) Integration

Connect local-agent-forge directly into your agentic coding environment to give Claude Code, Cursor, and Codex native access to local GPU models.

MCP Tools Provided:

Tool Name Description
local_generate Generate text/code on local GPU at $0 cost (Ollama/vLLM/LMStudio)
local_chat Multi-turn conversational chat with local models
route_task Dynamic 85% reasoning classifier and task execution
check_gpu_health Probe latency, VRAM, and model availability across localhost
get_savings_stats Retrieve real-time token savings and financial ledger
comfy_generate_image Dispatch local ComfyUI graph diffusion workflows
transcribe_audio Local speech-to-text audio transcription via Whisper

Claude Code MCP Configuration

Add to claude.json or run claude mcp add:

{
  "mcpServers": {
    "local-forge": {
      "command": "npx",
      "args": ["-y", "@nymrel/local-forge", "mcp"]
    }
  }
}

Cursor MCP Configuration

In Cursor Settings > Features > MCP, click Add New MCP Server:

  • Name: local-forge
  • Type: command
  • Command: node C:/Users/johns/Desktop/local-agent-forge/bin/local-forge.js mcp

🛠️ Programmatic API

TypeScript API

import { LocalAgentRouter, OllamaAdapter, TokenLedger } from '@nymrel/local-forge';

const router = new LocalAgentRouter();

// Classify & Route
const decision = await router.evaluate('Generate unit tests for payment webhook handler');
console.log(`Route: ${decision.route}, Model: ${decision.targetModel}`);

// Execute with automatic ledger tracking
const result = await router.execute('Generate unit tests for payment webhook handler');
console.log(`Generated: ${result.text}`);
console.log(`Dollars Saved: $${result.dollarSavings}`);

Python API

from local_agent_forge import LocalAgentRouter, TokenLedger

router = LocalAgentRouter()

# Evaluate routing decision
decision = router.evaluate("Refactor this database query function")
print(f"Route: {decision.route}, Target Model: {decision.target_model}")
print(f"Est. Savings: ${decision.estimated_dollars_saved}")

🧪 Testing & Validation

Run the complete test suite across TypeScript and Python:

# Build TypeScript and run Node test suite
npm test

# Run Python unittest suite
python -m unittest discover -s tests

📄 License & Attribution

  • License: MIT License
  • Copyright: (c) 2026 Nymrel / JalenBuilds LLC
  • Contact: contact@nymrel.com
  • Parent Organization: JalenBuilds LLC

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选