MCP server replacing raw tool output with compact JSON for efficient AI coding agent workflows.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent — or use 1-click editor setup below.
One-click editor setup isn’t available for this listing yet — we don’t have a confirmed install command, and we’d rather show nothing than point your editor at the wrong package or host. Follow the project’s own setup instructions, linked above.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Daimonos.
An agent-optimized OS layer that makes AI coding agents faster and cheaper.
Daimonos replaces the built-in file, search, exec, and git tools in your AI coding agent with structured equivalents that return compact JSON instead of raw terminal output. The result: fewer tokens consumed, fewer round-trips, and lower API costs — with zero changes to your workflow.
Platforms: Linux (x86_64, aarch64) and macOS (Apple Silicon, Intel). Windows support is planned.
For repository agent/operator conventions, see AGENTS.md (especially
Daimonos tool usage policy).
The name comes from Greek daimon (agent/spirit), the etymological root of "daemon."
When an AI agent runs cargo test, it gets back hundreds of lines of terminal
output — progress bars, compile messages, passing test names — when all it
needs is "47 passed, 0 failed." The agent pays for every token of that noise:
reading it, reasoning about it, and carrying it in context for the rest of the
session.
The same waste happens with git status, docker ps, ls -la, and every
other shell command. Agents spend 30-50% of their token budget on verbose,
unstructured tool output.
Daimonos runs as an MCP server that your IDE or CLI spawns automatically. It provides the same operations agents already use — read files, write files, search, execute commands, git operations — but returns compact, structured JSON instead of raw text.
The single binary also provides ACP, one-shot agent, interactive chat, and socket-daemon runtimes — a full coding-agent harness in its own right; see Agent harness features below and Runtime modes for the explicit subcommands and compatibility aliases.
Native tool plugins — git, cargo, gh, and docker are exposed as
first-class MCP tools with structured JSON output. When agents call
exec("cargo test"), Daimonos intercepts it and routes through the native
plugin instead.
Semantic output filters — For commands without native plugins (pytest, make, pip install, eslint, etc.), Daimonos applies semantic compression: test runners return summary + failures only, build commands return "ok" or just the errors, install commands return success/failure.
Protocol-level efficiency — Read deduplication (re-reading an unchanged
file returns {"unchanged":true} instead of the full content), compact
field names, lazy tool exposure, batch operations, and a terse output
directive that cuts LLM prose by ~30%.
Managed subprocess execution — Command output is bounded while it is read instead of after full buffering. Daimonos owns Unix process groups, retires descendants on cancellation or session shutdown, isolates child environments through an explicit allowlist, and stores background output in private bounded artifacts.
Tested with Claude Opus 4.6 on identical coding tasks (read files, search code, edit, run tests, git operations):
| Metric | Baseline | Daimonos | Savings |
|---|---|---|---|
| Output tokens | 5,842 | 3,198 | -45.3% |
| Total tokens | 41,239 | 33,847 | -17.9% |
| Tool calls | 17 avg | 14 avg | -17.6% |
| Wall time | 42.1s avg | 35.2s avg | -16.4% |
Remote benchmarks on AWS (same hardware, same model, same tasks) showed 20.3% cost reduction and 14.0% faster task completion.
Five instances from swe-bench-verified-mini,
same model (Claude Opus 4.8) across all three harnesses, each agent running
inside the official SWE-bench Docker image for its instance (real test
environment), scored with the official swebench evaluation harness:
| Instance | daimonos tokens (LLM calls) | mini-swe-agent tokens (LLM calls) | cursor-agent tokens |
|---|---|---|---|
| django__django-11815 | 54,755 (4) | 38,305 (9) | 113,242 |
| django__django-12155 | 53,773 (4) | 33,095 (9) | 348,425 |
| django__django-12708 | 88,765 (6) | 196,492 (22) | 451,349 |
| sphinx-doc__sphinx-8035 | 172,729 (10) | 342,108 (30) | 930,495 |
| sphinx-doc__sphinx-9367 | 66,812 (5) | 18,611 (6) | 230,223 |
| Total tokens | 436,834 | 628,611 | 2,073,734 |
| Total wall time | 84 s | 247 s | 279 s |
| Resolved | 5/5 | 5/5 | 5/5 |
Conclusions:
See benchmarks/swebench/ for the runners and methodology.
Use this script for README readers, release notes, and social posts:
What to highlight in the demo:
Pre-built binaries (Linux and macOS):
From source:
See docs/install.md for all platforms (ARM Linux, Intel Mac, musl static builds).
For most users, start with one of these:
Add Daimonos as an MCP server. For Cursor, add to your project's
.cursor/mcp.json:
That's it. Daimonos starts when your IDE opens the project and exits when you close it. No daemon to manage, no background service.
| Tool | What it does |
|---|---|
read_file | Read with optional offset/limit, content-hash deduplication |
write_file | Write with auto-mkdir |
edit_file | String replacement with diff confirmation |
search | Regex search (content mode) or file discovery (file mode) |
exec | Run commands with semantic filtering, bounded capture, and owned teardown |
batch | Multiple operations in a single round-trip |
workspace_info | Project type, git status, directory listing, analytics |
These appear automatically when the corresponding CLI tool is found on PATH:
Factual signals from GitHub, npm, and our automated checks — not a rating.
No reviews yet — be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/beardfaceguy-daimonos)<a href="https://allmcps.com/mcp/beardfaceguy-daimonos"><img src="https://allmcps.com/api/badge/beardfaceguy-daimonos?style=directory" alt="Daimonos on AllMCPs" /></a>