Your AI's book of spells.
Mimir provides your AI with the codified wisdom of how great software gets built — and tools to learn from experience. With every sprint and every feature built, your team and their AI get sharper — because the playbook they share keeps improving.
Two steps: register to get your token, then add the config snippet to your IDE.
Step 1 — Register and get your token
Register — your authentication token is shown on the confirmation page. Copy and save it.
Step 2 — Add to your IDE config
The config below pulls the latest Mimir MCP container from Docker Hub (featurefactory/mimir-mcp) and runs it with your token.
No local install needed — Docker handles everything.
Export / import: set MIMIR_DEV_ROOT to your dev folder (e.g. /Users/you/GitHub)
and bind-mount the same path with -v. Most other MCP tools work without a mount.
See DOCKER_QUICK_START.
File: ~/.config/devin/mcp_config.json
Windows: %APPDATA%\devin\mcp_config.json. Project-level: .devin/mcp_config.json (or gitignored .devin/mcp_config.local.json for tokens).
{
"mcpServers": {
"mimir": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "MIMIR_DEV_ROOT=/Users/you/GitHub",
"-v", "/Users/you/GitHub:/Users/you/GitHub",
"-e", "MIMIR_SERVER_URL=https://mimir.featurefactory.io",
"-e", "MIMIR_TOKEN=<your-token>",
"-e", "MCP_TRANSPORT=stdio",
"featurefactory/mimir-mcp:latest"
]
}
}
}
File: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mimir": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "MIMIR_DEV_ROOT=/Users/you/GitHub",
"-v", "/Users/you/GitHub:/Users/you/GitHub",
"-e", "MIMIR_SERVER_URL=https://mimir.featurefactory.io",
"-e", "MIMIR_TOKEN=<your-token>",
"-e", "MCP_TRANSPORT=stdio",
"featurefactory/mimir-mcp:latest"
]
}
}
}
File: ~/.cursor/mcp.json
{
"mcpServers": {
"mimir": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "MIMIR_DEV_ROOT=/Users/you/GitHub",
"-v", "/Users/you/GitHub:/Users/you/GitHub",
"-e", "MIMIR_SERVER_URL=https://mimir.featurefactory.io",
"-e", "MIMIR_TOKEN=<your-token>",
"-e", "MCP_TRANSPORT=stdio",
"featurefactory/mimir-mcp:latest"
]
}
}
}
Self-host Mimir using Docker Compose — web app + MCP facade in one command.
git clone https://github.com/FeatureFactory-io/mimir.git
cd mimir
cp .env.example .env # set MIMIR_USER and MIMIR_PASSWORD
docker compose up -d
# FOB web UI: http://localhost:8000
# MCP SSE: http://localhost:8001/sse
Then point your IDE config at MIMIR_SERVER_URL=http://localhost:8000 with a locally obtained token.
See DOCKER_QUICK_START.md for full details.
<your-token> with the token from your registration confirmation.
Replace /Users/you/GitHub with your dev folder (same path in MIMIR_DEV_ROOT and -v).
Restart your IDE after saving.