hermes-local-hands
Provides a local companion for a remote Hermes agent, allowing it to inspect registered repository status and approved files, and to propose patch and check requests that require local operator approval.
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., "@hermes-local-handsInspect the repo status and propose a patch to fix the failing test."
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.
Hermes Local Hands
Hermes Local Hands is an alpha local companion for a remote Hermes agent. It gives that agent a deliberately narrow view of one registered repository, while the computer that owns the repository retains the final say over every change and check.
It solves a concrete split-machine problem: Hermes can reason on a Mac Studio, server, or VM, while the developer's source code remains on a different local machine. The remote side can inspect approved files and create requests. It cannot run a shell, approve or deny a request, write the active checkout, merge, or push.
Security boundary in v0.1.
workspace_statusandread_fileare remote inspection tools.propose_patchandrequest_checkonly create a pending, expiring request. Approval and rejection are local-operator actions. Local Hands applies patches and launches checks from an isolated snapshot rather than writing the registered checkout itself. Approved check code still has the local user's normal host and network access and can deliberately modify the registered checkout; this is not a sandbox.
Why this now
The architecture follows real upstream demand for safer local execution and split-runtime workflows, rather than adding a second Hermes runtime. Useful primary context is the upstream discussions #18715, #42807, and #16462, plus the related implementation work in #63966 and #43045.
Related MCP server: Coding Tools MCP
What it does — and does not do
Capability | Remote Hermes can do it | Local operator must do it |
See sanitised Git status | Yes, for a granted workspace | Register the workspace and grant the client |
Read a text file | Yes, only inside the explicit read allowlist | Define the allowlist |
Propose a textual patch | Create a pending request only | Review and approve it |
Request a fixed check profile | Create a pending request only | Review and approve it |
Apply or test | No | Local Hands launches it in a snapshot; approved code remains host-capable |
Reject, merge, push, use a shell | No | Reject is local; merge/push/shell are outside the protocol |
Every request is tied to an authenticated client, an allowed workspace, the
current Git HEAD, the workspace-policy hash, an idempotency key scoped to the
client, and a short TTL. A changed policy or commit invalidates a request.
Re-registering an existing workspace ID replaces its client grants with exactly
the new --client list; old grants do not follow a changed root or policy.
Interrupted execution is recorded as uncertain, not silently reported as a
success. The local state store also writes a signed, append-only receipt chain
for requests and operator decisions.
Install and local-only quickstart
Requirements: Python 3.11+ and Git. Install the isolated command with uv or pipx:
uv tool install hermes-local-hands
# Alternative: pipx install hermes-local-handsFor development from a source checkout instead:
# Use a Python 3.11+ executable; macOS /usr/bin/python3 may still be too old.
python3.11 -m venv .venv
source .venv/bin/activate
python -m pip install -e '.[dev]'The example below uses demo and only exposes src and tests; replace the
absolute path and allowlist with your own deliberate choices.
# Creates private local state and a bearer credential file (mode 0600).
hermes-local-hands init --client-id hermes-mac-studio
# Register one Git repository and fixed, named check profiles.
hermes-local-hands workspace add \
--id demo \
--root /absolute/path/to/repository \
--read src \
--read tests \
--write src \
--check syntax=/usr/bin/python3,-m,compileall,-q,src \
--client hermes-mac-studio
# Start the listener. It refuses non-loopback bind addresses.
hermes-local-hands serve --host 127.0.0.1 --port 8741init stores the token under the private state directory rather than printing
it. On macOS/Linux the default is
~/.local/state/hermes-local-hands/clients/<client-id>.token; set
XDG_STATE_HOME first to choose another private state location. Read the file
locally and export it only in the Hermes runtime's private environment:
export HERMES_LOCAL_HANDS_TOKEN="$(< "$HOME/.local/state/hermes-local-hands/clients/hermes-mac-studio.token")"Do not put a real token in a repository, issue, screenshot, shell history, or public configuration file.
End-to-end workflow
The local operator registers a workspace, its explicit read/write allowlist, fixed check profiles, and the Hermes client grant.
workspace grants <workspace-id>lists current grants;workspace revoke <workspace-id> <client-id>removes one and records the decision.The local operator starts
serveon loopback only.A trusted reverse proxy/tunnel terminates HTTPS and forwards to that local listener. Local Hands still accepts only the exact proxy host(s) named at startup; it does not infer trust from arbitrary forwarded headers.
Hermes calls
workspace_statusorread_file, or creates a pending patch or check request. Patch and check requests require a clean registered checkout both when they are created and when they are approved; uncommitted changes are never copied into the managed snapshot.The local operator inspects the request and chooses one of these local-only commands:
hermes-local-hands request list --state pending # Default output is a multiline, control-escaped local review. hermes-local-hands request show <request-id> # Copy the approval_code shown above; it is intentionally request-specific. hermes-local-hands request approve <request-id> --confirm <approval-code> # or: hermes-local-hands request deny <request-id> --reason "not approved"Use
request show <request-id> --jsononly when escaped machine-readable output is needed. The default review prefixes every untrusted patch line and escapes terminal/bidirectional controls so a patch cannot visually imitate the approval fields.An approved operation is revalidated against the recorded
HEADand policy, then Local Hands applies or launches it from a managed snapshot. Approved check code is still host-capable. Inspect the result withhermes-local-hands request status <request-id>and verify the receipt chain locally withhermes-local-hands receipt-verify.After reviewing a succeeded or failed snapshot, free its retention slot only through the exact-ID local deletion gate:
hermes-local-hands snapshot list hermes-local-hands snapshot delete <request-id> --confirm <request-id>The command records deletion-requested and deletion-completed receipts. It refuses pending, executing, missing, symlinked, or mismatched targets and never deletes snapshots automatically. An
uncertainsnapshot can be removed only after explicit local review and the same exact-ID confirmation. A successful deletion empties the already-open request directory in place and retains only a tiny completion marker instead of performing a final path-based directory removal. Completed marker directories are omitted fromsnapshot list; incomplete deletions remain visible there for local investigation.
For a check request linked to an approved patch, create it locally with the patch request ID. The check then uses that patch's approved snapshot rather than the mutable active checkout:
hermes-local-hands check add demo syntax check-after-patch-001 \
--client hermes-mac-studio \
--patch-request <approved-patch-request-id>That approval creates a fresh snapshot at the recorded base commit and replays the exact stored patch bytes whose digest was reviewed; it does not reuse a mutable previous snapshot. A check result is evidence about that snapshot only; it is not a merge, deployment, or production safety claim.
Hermes MCP configuration
Generate the configuration fragment rather than hand-copying names:
# Local same-machine use:
hermes-local-hands hermes-config --port 8741
# Remote use: pass the exact, already configured HTTPS tunnel endpoint.
hermes-local-hands hermes-config \
--endpoint https://mac-studio.example.ts.net/mcp \
--token-env HERMES_LOCAL_HANDS_TOKENThe generated YAML includes only these five tools:
workspace_statusread_filepropose_patchrequest_checkrequest_status
The two inspection tools advertise the MCP readOnlyHint. Hermes versions and
clients may still apply their own approval or policy gate to those tools; the
hint is useful metadata, not a compatibility guarantee or a bypass.
Hermes releases affected by upstream issue
#88858 may still
prompt for every read-only call while trust: untrusted is configured. That is
a fail-closed Hermes client behaviour, not additional Local Hands authority.
The upstream fix is tracked in
#88372. Keep the
generated untrusted setting unless you have reviewed the implications of
changing the client-side trust policy.
For a reverse proxy, bind Local Hands only to loopback and name every permitted external Host exactly:
hermes-local-hands serve --host 127.0.0.1 --port 8741 \
--proxy-host mac-studio.example.ts.netThe endpoint generator accepts loopback http://.../mcp or an explicit
non-loopback https://.../mcp URL. It rejects embedded credentials, query
strings, and unsafe schemes. Configure the tunnel's own identity,
authentication, and HTTPS separately; do not expose port 8741 directly to the
public Internet.
Safety properties and limits
Explicit scope: a client must have a workspace grant; path reads and patches must stay inside the workspace allowlist. Secret-looking and binary material is not returned as normal text.
No direct mutation: no remote endpoint approves, denies, executes a shell, writes the registered checkout, merges, or pushes.
Snapshot working directory: accepted patches and checks use a snapshot rooted at the recorded commit and do not include uncommitted checkout changes. This constrains Local Hands' own file operations, not what approved check code can access on the host.
Checks are not sandboxed: fixed profiles limit what the protocol launches, but the selected program still runs as the local user. It can access that user's files, network, credentials, services, and can cause host-side effects. Only approve profiles and repositories you trust.
Checkout observation is limited: after a check, Local Hands compares only Git-visible checkout status before and after.
samedoes not prove that no non-Git file, service, network, credential, or other host-side effect occurred.Audit evidence: retained request/decision events form a signed receipt chain. Verification detects edits and reordering within that retained chain; without an externally anchored head it cannot detect deletion of a valid tail or rollback to an earlier valid database. Receipts also do not prove a host was not compromised.
Bounded alpha retention: v0.1 permits at most 32 open requests per client, 256 open requests globally, 512 retained requests per client, and 2,048 retained requests globally. Managed storage also permits at most 128 snapshot deletion-marker directories. It never silently deletes requests, snapshots, or markers. Reviewed terminal snapshots can be removed one at a time through the local exact-ID command above, but there is no request-record or marker-prune command yet. Reaching a retained-request or deletion-marker cap is a deliberate fail-closed stop that needs a later reviewed retention/migration release, not a database or filesystem deletion workaround.
Failed creation markers: snapshot construction uses a private, high-entropy
.creating-*staging directory and atomic no-replace publication. If construction fails, Local Hands clears only the directory bound to its open descriptor and deliberately does not perform a race-prone path deletion. An empty or partially cleared staging marker can therefore remain and counts conservatively toward the 32-snapshot limit. v0.1 has no CLI prune operation for these internal markers; repeated build failures require a reviewed recovery/migration rather than manual deletion while evidence matters.
Read THREAT_MODEL.md and SECURITY.md before using it with sensitive repositories.
Development validation
ruff check .
ruff format --check .
pip-audit --local --skip-editable --progress-spinner off
pytest --cov=hermes_local_hands --cov-report=term-missing
python -m build
python -m twine check dist/*CI additionally installs the built wheel into a clean environment. These are release checks for the package, not proof of a safe production rollout.
On 2026-09-07 one real two-machine alpha flow was completed using Hermes on one Mac, this service on another Mac, and HTTPS over a private Tailscale network. The run covered unauthenticated rejection, status and file reads, a pending patch, local approval, snapshot application, a linked check, and receipt-chain verification. This is evidence for that exact environment only; it is not a general compatibility, availability, or production-security claim.
For a durable local service setup, see docs/SERVICE.md.
Project direction
The security core is intended to remain free and open source. There is no paid plan, hosted service, customer, or revenue today. Adoption and safety come before any optional convenience layer. See ROADMAP.md for the public, evidence-gated direction.
Contributing and security
See CONTRIBUTING.md for development expectations and SECURITY.md for private vulnerability reporting. Never put credentials, private source, or real action receipts in a public issue or pull request.
License
Released under the MIT License.
Hermes Local Hands is an independent community project and is not affiliated with or endorsed by Nous Research.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
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 Connectors
Git-native policy layer for AI agents: check_action verdicts against rules approved via PR.
Deterministic allow/require_approval/deny verdicts for agent actions, before they happen.
Security reviews for coding agents: diffs checked against your org policy and live infrastructure.
Repository evidence for agents before they adopt dependencies, enter codebases, compare, or merge.
Related MCP Servers
- AlicenseBqualityCmaintenanceEnables safe, human-in-the-loop AI document collaboration by letting agents create isolated workspaces, edit tracked files, open reviewable Change Requests, and get human approval before merging, with Git-backed conflict detection and resolution.35MIT
- AlicenseNot gradedqualityCmaintenanceEnables any MCP client to read, search, patch, and execute commands in a codebase, including interactive sessions and git operations, with permission modes and safety boundaries.Apache 2.0
- AlicenseNot gradedqualityAmaintenanceEnables coding agents to perform workspace-confined file operations, read-only Git inspection, and structured shell commands, while requiring out-of-band human approval for mutations and external executions and maintaining an audit trail.3MIT
- AlicenseNot gradedqualityAmaintenanceEnables AI clients to safely read, search, understand, and edit local project code and files, with Git inspection, code indexing, and controlled command execution within permissioned workspaces.55MIT
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/mauricemohr88-debug/hermes-local-hands'
If you have feedback or need assistance with the MCP directory API, please join our Discord server