Hermes Local Agent Lanes
БесплатноНе проверенProvides safe local-model MCP support tools (summarization, classification, critique, draft) for a cloud owner agent, with strict boundary guards to prevent ris
Описание
Provides safe local-model MCP support tools (summarization, classification, critique, draft) for a cloud owner agent, with strict boundary guards to prevent risky actions.
README
Safe local-model support lanes for a cloud owner agent.
This project packages a pattern we use with Hermes Agent: keep the strongest cloud model as the owner that makes decisions, mutates files, verifies, and reports; route low-risk background work to fast local models through narrow MCP tools.
Local models should be useful coworkers, not unsupervised operators.
What this repo shows
- Local MLX model as a safe MCP support lane for a cloud owner agent.
- SSH stdio MCP mounting so another computer can use the local model without exposing a LAN HTTP port.
- Support-only boundary guards: summary/classification/critique/draft are allowed; shell/patch/git/deploy/config/cron/hook/secrets are blocked.
- Owner router demo for deciding task intensity and whether support models may be used.
- Separate quota support lane pattern for using a secondary coding model as an advisory reviewer/patch-sketcher while the owner agent applies and verifies changes.
Architecture
Cloud owner agent (Hermes / GPT-class model)
├─ owns architecture, mutations, tests, commits, final QC
├─ calls narrow local MCP support tools when useful
│
└─ Local support lanes
├─ MLX/OpenAI-compatible model server on localhost
├─ stdio MCP wrapper: support + health tools only
├─ optional SSH stdio mount from another computer
└─ optional coding support lane in read-only/advisory mode
Why this matters
Most local-agent demos fail in one of two ways:
- They let a weaker local model execute risky actions.
- They use the expensive frontier model for every low-value summarization or log-reading step.
This repo uses a stricter split:
| Layer | Allowed | Forbidden |
|---|---|---|
| Cloud owner | plan, decide, edit, test, commit, report | surprise paid/external actions |
| Local MCP support | summarize, classify, critique, draft, explain | shell, patch, git, deploy, config, cron, hooks, secrets |
| Secondary coding quota lane | read-only review, patch sketches, bug hypotheses | direct workspace mutation unless owner verifies |
Quick start
1. Run a local OpenAI-compatible model server
Any local server with /v1/chat/completions works. Example environment variables:
export LOCAL_MODEL_BASE_URL="http://127.0.0.1:18085/v1/chat/completions"
export LOCAL_MODEL_NAME="your-local-mlx-model"
2. Start the MCP server locally
python3 -m hermes_local_agent_lanes.mcp_support_server
3. Mount it from a local MCP client
{
"mcpServers": {
"local-support-lane": {
"command": "python3",
"args": ["-m", "hermes_local_agent_lanes.mcp_support_server"]
}
}
}
4. Mount it from another computer over SSH
This avoids exposing the model server to your LAN:
{
"mcpServers": {
"local-support-lane": {
"command": "ssh",
"args": [
"user@your-mac-or-workstation",
"cd /path/to/hermes-local-agent-lanes && python3 -m hermes_local_agent_lanes.mcp_support_server"
]
}
}
}
Tools exposed
local_support
Ask the local model for low-risk support only:
- summary
- classification
- critique
- draft
- simple code explanation
- read-only long-context compression
Risky prompts are blocked before reaching the model and return:
TASK_REQUIRES_OWNER_AGENT
local_support_health
Checks whether the local model endpoint is reachable.
Run tests
python3 -m unittest discover -s tests
The tests exercise JSON-RPC MCP initialize/tool listing and the hard boundary guard without requiring a real model.
Repo status
This is a small pattern repo, not a full Hermes fork. It is intentionally portable and public-safe: no private paths, no credentials, no runtime databases, no model weights.
See also
docs/architecture.md— deeper design notesexamples/mcp-config-ssh.json— remote MCP mount exampleexamples/owner-router-demo.json— intensity-routing examplesrc/hermes_local_agent_lanes/owner_router.py— small callable router demo
License
MIT
Установка Hermes Local Agent Lanes
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/liyanfu896-cpu/hermes-local-agent-lanesFAQ
Hermes Local Agent Lanes MCP бесплатный?
Да, Hermes Local Agent Lanes MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Hermes Local Agent Lanes?
Нет, Hermes Local Agent Lanes работает без API-ключей и переменных окружения.
Hermes Local Agent Lanes — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Hermes Local Agent Lanes в Claude Desktop, Claude Code или Cursor?
Открой Hermes Local Agent Lanes на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare Hermes Local Agent Lanes with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
