Mymir: An Open-Source Project Graph for Coding Agents via MCP

A developer on r/ClaudeAI created Mymir, an open-source project management tool purpose-built for coding agents. It addresses the fragility of maintaining project state across agent runs — what's blocked, past decisions, implementation readiness, and handoff notes.
Core Idea
Tasks sit in a directed graph with dependencies, related decisions, acceptance criteria, relevant files, and previous execution notes. Through the Model Context Protocol (MCP), the agent receives only the slice of the project it needs — no full context dump or manual briefs.
Technical Stack
- Framework: Next.js
- Language: TypeScript
- Database: Postgres via Drizzle ORM
- License: AGPL (self-hosted)
How It Works
The team uses Mymir to manage itself. Features become tasks on the platform. Claude Code pulls scoped context for each session, and when a task is completed, the tool creates a structured handoff for the next session. The practical benefit: less re-explaining, fewer wrong starts.
Get the Code
Repository: https://github.com/FrkAk/mymir
📖 Read the full source: r/ClaudeAI
👀 See Also

Testreel: Programmatic Demo Video Generation with Claude Code
Testreel is an npm package that generates polished product demo videos from JSON, YAML, or Playwright interaction descriptions. It creates webm/mp4/gif videos with cursor overlays, click ripples, and gradient backgrounds.

T9OS: An AI Orchestration System Built Entirely with Claude Code
An economics student built T9OS, a complete AI orchestration layer using Claude Code as the only programming tool. The system includes 18 production pipelines, a 12-state lifecycle engine, and 7 AI 'Guardians' that review every output.

Holaboss AI Runtime Moves to TypeScript, Implements Persistent MCP Ports
The Holaboss AI local agent runtime has been refactored to use TypeScript exclusively, eliminating Python dependencies and reducing bundle size. It now persists MCP server ports in SQLite with UNIQUE(port) constraints to prevent collisions across restarts.

MCP Server Connects Claude to Agent-to-Agent Marketplace
A developer built an MCP server that exposes five tools and two resources, allowing Claude to search, invoke, and pay for capabilities from other AI agents in a marketplace. The server includes persistent storage in an agent vault and was largely implemented using Claude Code.