agent-fde
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., "@agent-fdestart new FDE engagement for Acme Clinic in healthcare"
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.
agent-fde
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.
Related MCP server: AgentRecall
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 toolingUsage
As an MCP server
agent-fde serveRegister 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 3The 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
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.
Latest Blog Posts
- 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/chenshuai9101/agent-fde'
If you have feedback or need assistance with the MCP directory API, please join our Discord server