Agent Fde
FreeNot checkedA methodology-driven MCP server that guides enterprise AI rollouts through a 5-phase pipeline with layered memory for experience reuse, enabling agents to manag
About
A methodology-driven MCP server that guides enterprise AI rollouts through a 5-phase pipeline with layered memory for experience reuse, enabling agents to manage engagements and crystallize skills.
README
A methodology-driven consulting agent toolkit that accumulates experience. FDE manages the process and deliverables; the memory system manages experience reuse.
agent-fde fuses two ideas into one clean, tested, open-source Python package:
- FDE (Frontline Deployment Engineering) — a 5-phase pipeline that turns an enterprise AI/automation rollout into executable, file-based deliverables.
- Layered memory + skill crystallization — the agent remembers what worked and recalls it automatically the next time, like muscle memory.
It ships as both an MCP server (for host agents such as Claude) and a CLI.
Why
Most agent tooling either has a strong workflow but no memory, or accumulates
memory but has no methodology. agent-fde combines both: a disciplined
5-phase engagement process and a memory loop that crystallizes each finished
engagement into a reusable skill.
Key design: inversion of control
The engine never calls an LLM. Instead:
old (stub): engine → calls LLM API → generates deliverable ❌ needs API key, vendor lock-in
new (inverted): host LLM → does its own analysis → submits structured result
→ fde_submit_analysis(...) → engine validates (pydantic) + renders ✅
Result: the package has zero LLM dependency — no API key, no vendor lock-in.
Methodology travels with the package as SKILL.md prompts that guide the host
agent through each phase. Pure-CLI use falls back to heuristic templates.
Install
pip install agent-fde # core (MCP + FDE + memory)
pip install "agent-fde[browser]" # + optional Playwright browser tools
pip install "agent-fde[dev]" # + test/lint tooling
Usage
As an MCP server
agent-fde serve
Register it with your MCP host, e.g.:
{
"mcpServers": {
"agent-fde": { "command": "agent-fde", "args": ["serve"] }
}
}
As a CLI
agent-fde fde new --client "Acme Clinic" --industry "Healthcare" --project "Chart AI"
agent-fde fde list
agent-fde fde run <engagement_id> --phase 1
agent-fde fde run-all <engagement_id> --input "Doctors spend 2h/day on chart entry"
agent-fde fde deliverable <engagement_id> --phase 3
The 5 phases
| Phase | Name | Deliverable |
|---|---|---|
| 1 | Discovery | Pain-point matrix |
| 2 | Assessment | Automation opportunity list + ROI |
| 3 | Architecture | Tech design + Mermaid diagram + milestones |
| 4 | Prototype | Prototype file skeleton + test cases + setup guide |
| 5 | Handoff | Evidence package + project index |
On Phase 5 completion the tools prompt the host agent to call
memory_crystallize, closing the experience loop.
Layered memory (L0–L4)
| Layer | Role |
|---|---|
| L0 | Meta rules (behavioural red lines) |
| L1 | Insight index (≤25 navigation pointers) |
| L2 | Global facts (user preferences, environment) |
| L3 | Skill library (crystallized reusable SOPs) |
| L4 | Session archive |
Stored under ~/.agent-fde/ (override with AGENT_FDE_HOME), decoupled from code.
Engagements live under ~/.agent-fde/engagements/<id>/.
Muscle-memory hook
hooks/skill_reflex.py is a zero-dependency Claude Code UserPromptSubmit hook.
On each prompt it fuzzy-matches your crystallized L3 skills (Chinese-friendly)
and injects the matching SOP as context — no manual retrieval. It shares the
exact matcher used by the skill_find MCP tool (single source of truth) and
fails safe (any error → silent exit 0).
Development
pip install -e ".[dev,browser]"
pytest
ruff check .
License
MIT
Install Agent Fde in Claude Desktop, Claude Code & Cursor
unyly install agent-fdeInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add agent-fde -- uvx --from git+https://github.com/chenshuai9101/agent-fde agent-fdeFAQ
Is Agent Fde MCP free?
Yes, Agent Fde MCP is free — one-click install via Unyly at no cost.
Does Agent Fde need an API key?
No, Agent Fde runs without API keys or environment variables.
Is Agent Fde hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Agent Fde in Claude Desktop, Claude Code or Cursor?
Open Agent Fde on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by 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
by xuzexin-hzCompare Agent Fde with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
