Hoplon
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., "@HoplonAudit my latest diff for boundary violations"
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.
Hoplon
Deterministic repository boundaries for AI coding agents and the humans who direct them.
Hoplon sits between an agent and a repository. A human or host declares what the agent may inspect and modify; Hoplon supplies structured reads, supervised edits, content-addressed snapshots, deterministic audits, recovery, and machine-readable evidence.
Hoplon began as the repository boundary for Project Phalanx. It is intentionally standalone: any agent, MCP client, CI worker, or custom host can use the same contracts without adopting Phalanx.
Developer preview: the deterministic core and shipped transports are usable today, but the public API is still on the
0.4.xline. Expect additive growth and clearly documented compatibility changes before1.0.
Why Hoplon
Agentic coding can waste context and reviewer time long before a test fails. Hoplon moves mechanical questions to the repository boundary:
What was the agent allowed to read or change?
Did the resulting diff stay within that contract?
Was a symbol, signature, import, path, or file boundary violated?
Can a failed attempt be reverted without contaminating the next one?
Which claims are deterministic, and which are only advisory?
The answer is a typed result backed by snapshots and AST checks, not an agent summary that the host must trust.
Related MCP server: safe-code-mcp
What ships
Capability | Posture |
Structured reads and search | Shipped through |
Supervised non-binary edits | Shipped through ordered edit sessions and MCP/HTTP session tools |
Snapshots and deterministic audit | Shipped through |
Recovery and review evidence | Shipped through review payloads, rollback templates, repair context, and snapshot evidence |
CLI, MCP, HTTP, and gRPC | Shipped over the same engine contracts |
Semantic, ML, DLP, and provider-backed references | Advisory and host-bound; unavailable is reported honestly when no provider is configured |
Hoplon does not choose models, execute arbitrary shell commands, own retry policy, or replace tests and human review.
Quick start
Requirements: Git and Node.js 22 or newer.
git clone https://github.com/justguy/hoplon.git
cd hoplon
npm ci
npm run build
node dist/bin/hoplon.js status \
--root . \
--grammars-dir vendor/grammars \
--format humanRun the executable boundary example:
npm run example:bounded-editIt creates an isolated temporary repository, accepts an edit inside the declared symbol boundary, blocks an out-of-scope symbol, reverts the workspace, and prints the evidence returned by the real session path.
For development proof:
npm run typecheck
npm run test:arch
npm run test:contracts
npm run test:proofThe contract
A writable manifest is the boundary a human or host gives the agent:
const manifest = {
manifestSchemaVersion: 2,
projectId: 'widget',
runId: 'run-42',
correlationId: 'change-price-format',
entries: [
{
path: 'src/format.ts',
intent: 'modify',
scope: { kind: 'symbols', symbols: ['formatPrice'] },
},
],
};The normal supervised loop is:
read with provenance
-> declare manifest
-> preflight
-> snapshot
-> dry-run (optional)
-> apply or declare edits
-> audit
PASS -> review/evidence -> close
BLOCK -> revert -> repair context -> host decides what followsHoplon owns repository facts. The host owns workflow policy.
Connect an agent over MCP
After building Hoplon, point an MCP client at the launcher. Replace the two absolute paths with the Hoplon checkout and the repository the agent should work in:
{
"mcpServers": {
"hoplon": {
"command": "node",
"args": [
"/absolute/path/to/hoplon/dist/bin/hoplon.js",
"mcp",
"serve",
"--root",
"/absolute/path/to/target-repository",
"--grammars-dir",
"/absolute/path/to/hoplon/vendor/grammars"
]
}
}
}Use --agent-profile strict-agent when the host has completed project
registration and folder-policy onboarding. The default profile remains the
compatibility surface.
Use as a library
The public package name is @phalanx/hoplon; the name records the project's
origin, not a runtime dependency on Phalanx.
import {
createDefaultHoplonEngine,
createHoplonEditSession,
} from '@phalanx/hoplon';The engine is adapter-first. Filesystems, versioning, snapshot stores, locks, code intelligence, scanners, policy providers, vector stores, and behavior test runners are injected rather than read from ambient state.
See Integration and Host workflow for the supported entry points.
Security model
Hoplon's deterministic verdicts use manifest, path, snapshot, and AST facts.
Semantic retrieval, model output, behavior tests, risk scores, and optional
provider results cannot silently change structural PASS/BLOCK authority.
Hoplon is not a process sandbox. Read SECURITY.md and the threat model before granting an agent repository access.
Repository map
src/hoplon/contracts— versioned DTOs and schemassrc/hoplon/operations— deterministic and advisory operationssrc/hoplon/session— supervised edit state machinesrc/hoplon/adapters— environment seams and default implementationssrc/hoplon/transport,src/hoplon/mcp— remote and agent-facing surfacespackages— optional adapter packagestests— contract, flow, transport, self-hosting, and architecture proof
The current implementation truth is in ARCHITECTURE.md. The product intent is in HOPLON_VISION.md.
Contributing
Issues, design feedback, host integrations, language support, and adapter contributions are welcome. Start with CONTRIBUTING.md. Security findings belong in private vulnerability reports, not public issues.
License
Hoplon core is available under the MIT License. Optional packages declare their own licenses; in particular, the Semgrep adapter remains a separate LGPL-licensed package and is never bundled into the MIT core.
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
- Alicense-qualityAmaintenanceEmpower any MCP-compatible AI Agent(MCP Client) with engineering-grade capabilities to understand, modify, run, and deliver real-world code repositories.670Apache 2.0
- Flicense-qualityCmaintenanceA local MCP server that provides controlled repository access with policy-based file filtering, secret redaction, and audit logging for AI coding agents.
- Alicense-qualityBmaintenanceLocal-first code intelligence and safety layer for AI coding agents. MCP server exposes dependency graph, impact analysis, and AST-compressed repo context, backed by typed local memory, patch-scope safety gates, and git-independent transaction rollback.MIT
- Flicense-qualityAmaintenanceAnalyzes repositories, explains architecture, calculates change impact, and enforces guardrails for AI Agents like Claude Code, Cursor, and Codex via MCP tools.1
Related MCP Connectors
Control plane for autonomous software labor. Agents claim objectives over MCP with audit trail.
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Read-only Remote MCP for externally grounded AI agent trust receipts.
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/justguy/hoplon'
If you have feedback or need assistance with the MCP directory API, please join our Discord server