odin
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., "@odinstart new feature: add user profile page"
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.
Odin helps AI coding agents stop guessing from loose prompts. It turns feature intent into an explicit workflow so requirements, phase checkpoints, implementation work, and review artifacts stay visible as work moves from idea to release.
Odin runs as one local MCP server named odin and plugs into tools you already use: Codex, Claude Code, OpenCode, Amp, Cursor, Junie, and similar AI coding environments.
Why Odin
AI-assisted development often breaks down in the same way:
idea -> prompt -> plausible code -> fix -> fix -> reconstruct intentThe problem is not only that specs are missing. It is that intent lives in chat history, readiness is implicit, and the agent can start building before the work is clear.
Odin makes the intended path explicit:
idea -> spec -> refine -> build -> verify -> releaseThe core idea: AI does not reliably preserve intent on its own. Odin makes intent external, structured, and enforceable.
Related MCP server: Spec-driven Development MCP Server
What Odin Is
Odin is a specification-driven workflow layer for AI-assisted coding. It is not a replacement IDE, agent, or task tracker.
It gives your assistant a branch-first feature workflow with checkpoints that answer:
What are we trying to build?
Is the feature ready to implement?
What phase are we in?
What evidence did we produce?
What still needs human judgment?
Principles
Intent before implementation: make the requirement explicit before code starts drifting.
Readiness over motion: prefer a clear feature boundary over fast but premature code generation.
Feature first: move one coherent feature through a workflow instead of scattering work across ad-hoc tasks.
Enforcement over suggestion: phases, artifacts, checks, and gates should be explicit rather than hidden in prompt history.
Use the tools you already like: Odin plugs into your existing AI tool instead of replacing it.
Keep the human at the right boundary: AI should accelerate delivery, not erase judgment, review, or responsibility.
What Odin Changes
Your AI agent works from durable specs and phase artifacts instead of ad-hoc prompt history.
Implementation starts from an explicit feature workflow, not just because an agent can write code.
Specs, tasks, phase outputs, quality gates, review checks, phase-agent proof, skills used, and reusable learnings become explicit.
Odin can persist workflow state, learnings, and release history when you are ready for Supabase.
You keep your current AI tool. Odin plugs into it as an MCP server.
Who This Is For
Using Odin in your own project: start with the quickstart below.
Developing Odin itself: use docs/guides/DEVELOPING-ODIN.md.
How Odin Fits In
flowchart LR
U[You describe a feature] --> T[Your AI tool<br/>Codex, Claude Code, OpenCode,<br/>Amp, Cursor, Junie, etc.]
T --> O[Odin MCP server]
O --> W[Checkpointed feature workflow<br/>specs, phases, checks, artifacts]
W --> R[Your project repo]
O -. optional later .-> S[(Supabase persistence)]
R --> H[Human review and PR handoff]Quick Start
Run the bootstrap command from the root of the project where you want Odin to live. This is one-time setup for each target project.
Important:
Odin writes .odin/ into the directory you run this command from, unless you pass --project-root explicitly.
Pick your tool
Tool | Command | What happens |
Codex |
| Writes |
OpenCode |
| Writes |
Claude Code |
| Writes |
Amp |
| Writes |
Cursor |
| Prints the MCP server snippet for you to paste into Cursor |
Junie / other tools |
| Prints the MCP server snippet if your tool can wire a local MCP server |
What init does:
creates
.odin/config.yamlcreates
.odin/ODIN.mdas the local workflow guide for your AI agentcreates
.odin/managed-assets.jsonso Odin can refresh managed files without clobbering local editscreates
.odin/skills/.gitkeepfor project-local skill overrideswrites
.env.examplewrites your MCP config when auto-config is supported for that tool
defaults Odin to
runtime.mode: in_memoryso you can try it without external services first
Odin does not copy broad managed workflow assets by default. Add --sync-managed-assets when you intentionally want packaged .odin/agents/definitions/ and built-in skills copied into the project for local overrides or inspection.
What gets created in your project
.odin/config.yaml- Odin runtime config.odin/ODIN.md- local workflow guide for your AI agent.odin/managed-assets.json- update metadata for managed Odin files.odin/skills/.gitkeep- placeholder for project-local skill overrides.env.example- environment variable templatetool config such as
opencode.json,.mcp.json, or.codex/config.tomlwhen auto-config is supported
At minimum, commit .odin/config.yaml, .odin/ODIN.md, .odin/managed-assets.json, .odin/skills/.gitkeep, and .env.example. Keep .env local.
After init
Restart your AI tool so it reloads MCP servers.
Confirm the
odinMCP server is available.Tell your AI agent to use the
odinMCP tools for workflow state and phase context.odin initalso writes.odin/ODIN.mdas the local workflow guide the agent can consult.
From this point on, you normally work through your AI tool. The AI tool calls Odin's MCP server; you do not rerun init for every feature.
Suggested first prompt:
Confirm the `odin` MCP tools are available in this project. Use `.odin/ODIN.md` as your workflow guide, then tell me what Odin added to this repo and whether broad managed workflow assets were synced locally.Important:
.odin/ODIN.md is for the AI agent. It is not the human onboarding doc.
Database Setup
You can try Odin immediately in in_memory mode without Supabase.
When you are ready for database-backed tools:
Copy
.env.exampleto.env.Add your database credentials.
Ask your AI agent to run
odin.apply_migrationsfor you.
Suggested prompt:
If Odin database credentials are configured, run `odin.apply_migrations` and summarize what was applied. If they are not configured yet, tell me exactly what is missing and keep Odin in `in_memory` mode for now.Use Supabase when you want persistent workflow state, archival, and the dashboard. Use direct DATABASE_URL when you only need odin.apply_migrations against PostgreSQL.
Start Your First Feature
Bootstrap is a one-time project setup step. You do not run it again for every feature.
The normal way to start is back in your AI tool, not with a manual CLI command.
Suggested prompt:
Use Odin in this repository. Confirm the `odin` MCP tools are available and help me start a new feature for: <plain English feature request>. If you need my author name, initials, or any other missing metadata, ask me before starting.In the normal flow, the orchestrating AI session handles the branch-first + odin.start_feature workflow for you.
If your setup does not automate that yet, the manual odin start-feature helper is still available in runtime/README.md as a fallback/operator path.
Optional Later
Supabase persistence: for persistent runtime state, archival, and dashboard data
Dashboard visibility: this repo also includes an optional dashboard for feature health, claims, learnings, and eval status
Ralph Loop: for optional bounded automation around safe phase pickup and PR handoff
Manual MCP wiring: if you do not want
init --write-mcpto write your tool configTLA+ design verification: if you want
odin.verify_designfor state-heavy features
Documentation
Document | Use it when |
You want the full first-run guide | |
You want package setup details, config reference, or manual MCP wiring | |
You want a current end-to-end worked example | |
You want the deeper database setup path | |
You want optional Ralph Loop automation | |
You want the boundary between Odin's MCP server and agent execution | |
You want the optional dashboard app | |
You are developing or publishing Odin itself |
What Odin Includes
11-phase feature workflow with explicit phase outputs and checkpoints
one local MCP server named
odinfor workflow and state operationsreview checks via Semgrep for code and
docs_processfor docs/process-only changesstrict phase-agent readiness, execution attestation, prompt-realization proof, and skills-applied audit tools
learnings capture and propagation
optional Supabase-backed persistence and archives
optional dashboard for feature health, claims, learnings, and eval visibility
optional TLA+ design verification for state-machine-heavy work
Tool Notes
Odin ships auto-config flows today for:
Codex
OpenCode
Claude Code
Amp
For Cursor and other tools, --tool generic prints the server block you need to wire manually.
For Junie and other emerging agent tools, use the same generic path when your environment exposes local MCP server configuration.
Status
Odin is in active beta. The core workflow and MCP tools are usable today, while onboarding, integrations, and automation are still evolving.
What works today:
11-phase workflow with sequential phase transitions
odin.start_feature,odin.prepare_phase_context,odin.record_phase_agent_launch,odin.record_phase_artifact,odin.complete_phase_bundle,odin.record_phase_result, and related workflow toolsodin.record_phase_skills_applied,odin.record_break_glass_override, andodin.export_local_artifactsfor strict-mode audit and local artifact trailsodin.apply_migrationsfor packaged schema setupSupabase-backed workflow state for persistent runs
dashboard support for feature, claim, learning, and eval visibility
License
MIT - see LICENSE
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/Plazmodium/odin-workflow'
If you have feedback or need assistance with the MCP directory API, please join our Discord server