Front Office
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., "@Front OfficeWhat are our open questions and pending decisions?"
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.
Front Office
Design-ops system of record for projects built in conversation with AI: decision logs, open questions, and docs as generated views — so every session (human or AI, today or months from now, parallel or sequential) works from the same brain instead of chat scrollback.
Born from a real problem: designing a game across long AI sessions produced 46 logged decisions, and "was that ever actually approved?" kept needing an audit. Front Office makes the audit trail the primary artifact.
Core ideas
The decision log is an event log. Every decision carries when / who / why, a provenance tag —
[A]explicit human ruling ·[A→C]human direction, AI spec ·[C→A]AI proposal, human ratified ·[C]AI-assumed, standing but vetoable — and a status (✅ decided · 🕐 doc-pending · 💬 proposed). Corrections are new entries referencing old ones, never edits.Open questions are records, not scrollback. Unanswered items live in a tracked file until resolved — with a log entry.
Docs are builds. Context packs and status views are generated from the records; markdown is the storage and the interchange format, so there is no lock-in — the files are useful with no tooling at all.
The rider guard. A proposal attached to an approved decision never inherits that approval. Drafts written by AI are always 💬.
Related MCP server: kb
Use
npm ci
npm run fo -- status # counts, unratified [C] list, pending rulings
npm run fo -- decisions --provenance C --status decided
npm run fo -- open --section A
npm run fo -- show 12
npm run fo -- pack # writes projects/<p>/context-pack.md
npm run fo -- validate # CI-able: exit 1 on invariant violationsProject data lives in projects/<name>/ containing *decision-log.md and *open-items.md (see test/fixtures/ for the format). projects/ is gitignored — tenant data is yours and stays private. Point elsewhere with --project <dir> or FO_PROJECT_DIR.
Web UI
npm run fo -- pack # optional: regenerate views first
npm run web # http://localhost:4747 (FO_PORT / FO_PROJECT_DIR to override)Live dashboard over the same files: decision feed with provenance/status chips and filters, attention strip (pending rulings, unratified [C]), open items by section, stats — and a draft form (drafts are always 💬). 100% UI/logic separation: the client contains zero business logic; every derived value arrives precomputed from /api/state, the browser only renders and sends commands.
MCP server (the brains hookup)
Expose the records to any Claude Code session:
claude mcp add front-office --scope user -- npx tsx <repo>/src/mcp/server.tsTools: get_context_pack · list_decisions · list_open_items · draft_decision (always 💬) · get_stats. Set FO_PROJECT_DIR in the server env to select the project.
Architecture
Per the project's own doctrine (yes, its design decisions are tracked in a Front Office log):
src/core,src/adapters,src/views— pure (strict functional ESLint profile: no let/loops/classes/mutation, clocks and randomness must be injected).src/shell,src/mcp— the effects edge (moderate profile).Parsers keep raw cells verbatim → serialization round-trips exactly (
parse(serialize(parse(x))) ≡ parse(x), property-tested).
npm run typecheck && npm run lint && npm testMIT.
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-qualityDmaintenanceA database-backed MCP server that acts as a project memory bank, enabling AI assistants to store, retrieve, and search structured context like decisions, tasks, and architecture using SQLite and vector embeddings.Apache 2.0
- Alicense-qualityCmaintenanceA local MCP server that provides a shared context and learning foundation across multiple AI tools (Claude, Copilot, Codex) for multiple projects, enabling persistent knowledge, decisions, and gap reflection through note storage.MIT
- AlicenseAqualityBmaintenanceAn MCP server that records decisions, rejected alternatives, and justifications, and retrieves them later to avoid re-litigating past choices. It stores data locally in SQLite and Markdown.2Apache 2.0
- Alicense-qualityDmaintenanceMCP server for BRIEF.md that captures decisions, constraints, and questions during AI chats, enabling seamless project re-entry across different AI tools.11MIT
Related MCP Connectors
MCP server for generating rough-draft project plans from natural-language prompts.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
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/asafjac/front-office'
If you have feedback or need assistance with the MCP directory API, please join our Discord server