Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Semantic memory system for AI-assisted development - persistent context across sessions Muninn $1 $1 $1 **Your AI coding agent forgets everything between sessions. Muninn fixes that.** Muninn gives AI coding agents persistent memory. Before every edit, the agent knows what's fragile, what decisions were made, and what broke last time. After every session, it writes back what it learned. Session 50 has the same institutional knowledge as session 1. Every session builds on the last. Every project informs Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
muninn is best for cli workflows where MCP compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB MCP, runtime-metrics, public facts pack
Semantic memory system for AI-assisted development - persistent context across sessions Muninn $1 $1 $1 **Your AI coding agent forgets everything between sessions. Muninn fixes that.** Muninn gives AI coding agents persistent memory. Before every edit, the agent knows what's fragile, what decisions were made, and what broke last time. After every session, it writes back what it learned. Session 50 has the same institutional knowledge as session 1. Every session builds on the last. Every project informs
Public facts
5
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Feb 25, 2026
Vendor
Ravnltd
Artifacts
0
Benchmarks
0
Last release
8.0.0
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/ravnltd/muninn.gitSetup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Ravnltd
Protocol compatibility
MCP
Adoption signal
1 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
bash
npx muninn-ai
text
Session starts -> Load last session's context, goals, next steps -> Surface relevant decisions, patterns, known issues Agent edits a file -> Check fragility score (is this dangerous?) -> Surface related decisions (what was decided here before?) -> Warn about co-changed files (what else usually needs updating?) Session ends -> Save what was done, what was learned, what's next -> Build cross-session insights automatically
bash
npx muninn-ai
bash
# Requires Bun (https://bun.sh) git clone https://github.com/ravnltd/muninn.git ~/.local/share/muninn cd ~/.local/share/muninn && ./install.sh
bash
# Claude Code claude mcp add --scope user muninn -- muninn-mcp # Other MCP clients: point to the muninn-mcp script in ~/.local/bin/
bash
muninn --help muninn status
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB MCP
Editorial quality
ready
Semantic memory system for AI-assisted development - persistent context across sessions Muninn $1 $1 $1 **Your AI coding agent forgets everything between sessions. Muninn fixes that.** Muninn gives AI coding agents persistent memory. Before every edit, the agent knows what's fragile, what decisions were made, and what broke last time. After every session, it writes back what it learned. Session 50 has the same institutional knowledge as session 1. Every session builds on the last. Every project informs
Your AI coding agent forgets everything between sessions. Muninn fixes that.
npx muninn-ai
Muninn gives AI coding agents persistent memory. Before every edit, the agent knows what's fragile, what decisions were made, and what broke last time. After every session, it writes back what it learned. Session 50 has the same institutional knowledge as session 1.
Every session builds on the last. Every project informs every other project. Patterns learned in one codebase show up as warnings in another. Decisions compound. Solo builders can build like teams.
Works with: Claude Code, Cursor, Windsurf, Continue.dev, and any MCP-compatible tool.
AI coding agents are stateless. Every session starts from zero. This means:
The bigger the project, the worse it gets. By session 20, you're spending more time re-explaining context than writing code.
Muninn is a read-write memory loop. The agent queries context before making changes, then writes back what it learned.
Session starts
-> Load last session's context, goals, next steps
-> Surface relevant decisions, patterns, known issues
Agent edits a file
-> Check fragility score (is this dangerous?)
-> Surface related decisions (what was decided here before?)
-> Warn about co-changed files (what else usually needs updating?)
Session ends
-> Save what was done, what was learned, what's next
-> Build cross-session insights automatically
After a few sessions, Muninn knows your codebase like a senior engineer who's been on the project for years.
Most memory tools dump everything into the context window. Muninn doesn't. It enforces a hard 2000-token budget per tool call. Seven intelligence signals run in parallel (~5-15ms), determine what's actually relevant to what you're doing right now, and pack only that into context. It tracks which context the agent actually used vs ignored, and adjusts the budget allocation over time. Irrelevant stuff gets suppressed. Useful stuff gets more room.
npx muninn-ai
# Requires Bun (https://bun.sh)
git clone https://github.com/ravnltd/muninn.git ~/.local/share/muninn
cd ~/.local/share/muninn && ./install.sh
The installer creates wrapper scripts in ~/.local/bin/, sets up hooks, and registers the MCP server.
# Claude Code
claude mcp add --scope user muninn -- muninn-mcp
# Other MCP clients: point to the muninn-mcp script in ~/.local/bin/
muninn --help
muninn status
That's it. Start a coding session and Muninn auto-initializes for your project.
| Memory Type | Example | Why It Matters |
|-------------|---------|----------------|
| Files | auth.ts — fragility 8/10 | Agent asks before touching dangerous files |
| Decisions | "Use JWT not sessions" — because stateless deploys | Agent won't contradict past choices |
| Issues | Bug #12 — race condition in cache | Agent knows what's broken |
| Learnings | "Always validate at boundaries" | Patterns accumulate across sessions |
| Sessions | Last session: "Refactored auth, next: add tests" | Continuity between sessions |
| Blast Radius | types.ts impacts 47 files | Agent understands ripple effects |
14 tools available to your AI agent via Model Context Protocol:
| Tool | What It Does |
|------|--------------|
| muninn_query | Search memory (full-text, semantic, or LLM-ranked) |
| muninn_check | Pre-edit safety check (fragility, issues, co-changers) |
| muninn_predict | Bundle all relevant context for a task |
| muninn_suggest | Find related files using semantic search |
| muninn_file_add | Record file knowledge after editing |
| muninn_decision_add | Record an architectural decision |
| muninn_learn_add | Save a pattern or gotcha |
| muninn_issue | Track bugs and problems |
| muninn_session | Start/end session tracking |
| Tool | What It Does |
|------|--------------|
| muninn_enrich | Auto-inject context for Read/Edit/Write/Bash/Glob/Grep calls |
| muninn_approve | Approve blocked operations on high-fragility files |
| muninn_context | Unified context retrieval with intent routing (edit/read/debug/explore/plan) |
| muninn_intent | Multi-agent coordination (declare/query/release file locks) |
| Tool | What It Does |
|------|--------------|
| muninn | Passthrough to full CLI (50+ commands) |
Muninn gets smarter in two dimensions:
Per-codebase: Tracks which files change together, fragility patterns, architectural drift, and recurring issues. After a few sessions, it predicts what you'll need to touch and warns about risks.
Per-developer: Builds a profile of your coding preferences — error handling style, naming conventions, patterns you favor. This follows you across projects.
Seven feedback loops run in parallel on every tool call:
All feeding into the 2000-token budget. Context that helps gets boosted. Context that's irrelevant gets suppressed.
Not a guess — a weighted composite of 7 signals:
| Signal | Weight | What It Measures | |--------|--------|-----------------| | Dependents | 25% | How many files import this one | | Test coverage | 20% | Whether tests exist for this file | | Change velocity | 15% | How often it changes per week | | Error history | 15% | How many errors in the last 90 days | | Export surface | 10% | How many things it exports | | Complexity | 10% | Symbol count and structural complexity | | Manual override | 5% | Human-specified bias |
Muninn supports a hub-and-spoke architecture using sqld for shared memory across machines:
# On your central server
docker run -d --name sqld -p 8080:8080 \
-v sqld-data:/var/lib/sqld \
ghcr.io/tursodatabase/libsql-server:latest
# On each machine
export MUNINN_MODE=http
export MUNINN_PRIMARY_URL=http://YOUR_SERVER:8080
claude mcp add --scope user muninn -- env MUNINN_MODE=http MUNINN_PRIMARY_URL=http://YOUR_SERVER:8080 muninn-mcp
Two modes:
| Mode | Local State | Use Case |
|------|-------------|----------|
| local | Full DB | Single machine |
| http | None (stateless) | Multi-machine (recommended) |
HTTP mode is stateless — all queries go directly to sqld. No local replica to corrupt. Just reconnect if anything goes wrong.
Muninn works fully offline. Optional APIs improve search quality:
| Feature | API Key | Fallback |
|---------|---------|----------|
| Vector search | VOYAGE_API_KEY | Local Transformers.js |
| Smart re-ranking | ANTHROPIC_API_KEY | Standard FTS |
muninn status # Project state
muninn query "auth" # Search memory
muninn query "auth" --smart # LLM-ranked search
muninn check src/auth.ts # Pre-edit safety check
muninn impact src/types.ts # Blast radius analysis
muninn fragile # List high-risk files
muninn drift # Knowledge staleness
muninn ship # Pre-deploy checklist
muninn deps src/index.ts # Dependency graph
muninn deps --cycles # Find circular deps
Issues and bug reports welcome. Feature requests: open an issue first.
AGPL-3.0-only — free to use, modify, and share. If you run a modified version as a network service, you must release your source. Built by builders, for builders.
Built in collaboration with Claude Code.
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_MCP",
"generatedAt": "2026-04-17T03:24:58.261Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "cli",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile capability:cli|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Ravnltd",
"href": "https://github.com/ravnltd/muninn",
"sourceUrl": "https://github.com/ravnltd/muninn",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T02:57:56.972Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T02:57:56.972Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "1 GitHub stars",
"href": "https://github.com/ravnltd/muninn",
"sourceUrl": "https://github.com/ravnltd/muninn",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T02:57:56.972Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-ravnltd-muninn/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to muninn and adjacent AI workflows.