{% extends "base.html" %} {% load static %} {% block title %}Mimir — Your AI's Book of Spells{% endblock %} {% block body_class %}mm-landing{% endblock %} {% block content %}
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.
Register — your authentication token is shown on the confirmation page. Copy and save it.
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.
File: ~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mimir": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-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_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_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/phainestai/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. Restart your IDE after saving.