About
Memoria is an MCP server that analyzes git commit history to uncover hidden file dependencies and prevent code-breaking refactors by AI assistants. It detects implicit coupling between files by identifying which files frequently change together in commits, even when they lack direct import relationships. Key features of Memoria: - Git forensics analysis to map implicit file dependencies through co-change detection - Identifies files that evolve together in the codebase without explicit import links - Surfaces hidden dependencies to AI assistants before they suggest refactors - Works with existing git repositories to build dependency awareness
README
Memoria
The Memory Your AI Lacks.
An MCP server that prevents your AI from breaking code by revealing hidden file dependencies through git forensics.
[](https://www.npmjs.com/package/@byronwade/memoria) [](https://opensource.org/licenses/MIT) [](https://www.typescriptlang.org/) [](https://modelcontextprotocol.io) [](https://twitter.com/byron_c_wade)
---
⚡ Quick Install
One-Click Install (Smithery)
Click the badge above to install Memoria with one click via Smithery.
Quick Copy-Paste Config
Add this to your MCP config file (works with Claude, Cursor, Windsurf, Cline):
{
"mcpServers": {
"memoria": {
"command": "npx",
"args": ["-y", "@byronwade/memoria"]
}
}
}
Terminal One-Liners
| Tool | Command |
|------|---------|
| Claude Code | claude mcp add memoria -- npx -y @byronwade/memoria |
| Claude Desktop | npx @anthropic/claude-code mcp add memoria -- npx -y @byronwade/memoria |
| Cursor | mkdir -p .cursor && echo '{"mcpServers":{"memoria":{"command":"npx","args":["-y","@byronwade/memoria"]}}}' > .cursor/mcp.json |
| npm global | npm install -g @byronwade/memoria |
🪟 Windows PowerShell Install
# Claude Desktop
$config = "$env:APPDATA\Claude\claude_desktop_config.json"
$json = if(Test-Path $config){Get-Content $config | ConvertFrom-Json}else{@{}}
$json.mcpServers = @{memoria=@{command="npx";args=@("-y","@byronwade/memoria")}}
$json | ConvertTo-Json -Depth 10 | Set-Content $config
🍎 macOS Manual Install
# Claude Desktop (requires jq: brew install jq)
echo '{"mcpServers":{"memoria":{"command":"npx","args":["-y","@byronwade/memoria"]}}}' | \
jq -s '.[0] * .[1]' ~/Library/Application\ Support/Claude/claude_desktop_config.json - > tmp.json && \
mv tmp.json ~/Library/Application\ Support/Claude/claude_desktop_config.json
Then restart your AI tool. That's it!
---
Why Memoria?
You ask your AI to refactor a file. It does a perfect job. You run your app. It crashes.
Why? Some other file depended on the old implementation - but there's no import between them, so the AI didn't know.
Memoria fixes this. It analyzes git history to find files that change together, even without direct imports.
Without Memoria: With Memoria:
───────────────── ─────────────
You: "Update route.ts" You: "Update route.ts"
AI: "Done!" ✅ Memoria: "⚠️ 85% coupled with billing.tsx"
Result: 💥 CRASH AI: "I'll update both files"
Result: ✅ Works
---
Private & Local
Memoria runs 100% on your machine.
.git folder directlyYour code never leaves your computer.
---
Installation
Choose your AI tool:
| Tool | One-Liner | Config File |
|------|-----------|-------------|
| | npx @anthropic/claude-code mcp add memoria -- npx -y @byronwade/memoria | See below |
| | claude mcp add memoria -- npx -y @byronwade/memoria | Automatic |
| | mkdir -p .cursor && echo '{"mcpServers":{"memoria":{"command":"npx","args":["-y","@byronwade/memoria"]}}}' > .cursor/mcp.json | .cursor/mcp.json |
| | Manual config | ~/.codeium/windsurf/mcp_config.json |
| | Manual config | ~/.continue/config.json |
| | Settings UI | Cline MCP Settings |
---
📦 Claude Desktop
Config location:
~/Library/Application Support/Claude/claude_desktop_config.jsonRelated MCP Servers
AI Research Assistant
hamid-vakilzadeh
AI Research Assistant provides comprehensive access to millions of academic papers through the Semantic Scholar and arXiv databases. This MCP server enables AI coding assistants to perform intelligent literature searches, citation network analysis, and paper content extraction without requiring an API key. Key features include: - Advanced paper search with multi-filter support by year ranges, citation thresholds, field of study, and publication type - Title matching with confidence scoring for finding specific papers - Batch operations supporting up to 500 papers per request - Citation analysis and network exploration for understanding research relationships - Full-text PDF extraction from arXiv and Wiley open-access content (Wiley TDM token required for institutional access) - Rate limits of 100 requests per 5 minutes with options to request higher limits through Semantic Scholar
Linkup
LinkupPlatform
Linkup is a real-time web search and content extraction service that enables AI assistants to search the web and retrieve information from trusted sources. It provides source-backed answers with citations, making it ideal for fact-checking, news gathering, and research tasks. Key features of Linkup: - Real-time web search using natural language queries to find current information, news, and data - Page fetching to extract and read content from any webpage URL - Search depth modes: Standard for direct-answer queries and Deep for complex research across multiple sources - Source-backed results with citations and context from relevant, trustworthy websites - JavaScript rendering support for accessing dynamic content on JavaScript-heavy pages
Math-MCP
EthanHenrickson
Math-MCP is a computation server that enables Large Language Models (LLMs) to perform accurate numerical calculations through the Model Context Protocol. It provides precise mathematical operations via a simple API to overcome LLM limitations in arithmetic and statistical reasoning. Key features of Math-MCP: - Basic arithmetic operations: addition, subtraction, multiplication, division, modulo, and bulk summation - Statistical analysis functions: mean, median, mode, minimum, and maximum calculations - Rounding utilities: floor, ceiling, and nearest integer rounding - Trigonometric functions: sine, cosine, tangent, and their inverses with degrees and radians conversion support