code-failures-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@code-failures-mcpsearch for past bugs with 'connection timeout'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
code-failures-mcp
MCP server that indexes your code_failures/ knowledge base and makes it searchable from Claude Code (or any MCP client). Uses BM25 via MiniSearch for fast, relevant keyword search with fuzzy matching.
Why
Every bug you debug for hours becomes institutional knowledge. This MCP server makes that knowledge automatically available to Claude Code so it searches your past fixes before attempting a new solution.
Related MCP server: ClaudeHistoryMCP
Tools
Tool | Purpose |
| Search bugs by symptom, error message, or library name |
| Search canonical working patterns and version guides |
| Search everything with relevance scores |
| Retrieve full content of a specific document |
| List all indexed documents |
Setup
cd /Users/tk/Desktop/code-failures-mcp
npm install
npm run buildConfigure Claude Code
CLI + Manual Config (recommended)
The claude mcp add CLI doesn't support environment variables via flags, so you need to add the server first, then manually edit the config:
# Step 1: Add the server (global)
claude mcp add code-failures -- node /Users/tk/Desktop/code-failures-mcp/dist/index.js
# Step 2: Edit ~/.claude.json and add the env object to the code-failures server config:
# "env": {
# "BRAIN_PATH": "/Users/tk/Desktop/brain/code_failures"
# }
# For project-scoped:
claude mcp add -s project code-failures -- node /Users/tk/Desktop/code-failures-mcp/dist/index.js
# Then edit the project's section in ~/.claude.jsonVerify with:
claude mcp listJSON config (alternative)
Manually add to ~/.claude.json (find your project section):
{
"projects": {
"/your/project/path": {
"mcpServers": {
"code-failures": {
"type": "stdio",
"command": "node",
"args": ["/Users/tk/Desktop/code-failures-mcp/dist/index.js"],
"env": {
"BRAIN_PATH": "/Users/tk/Desktop/brain/code_failures"
}
}
}
}
}
}Or for Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"code-failures": {
"command": "node",
"args": ["/Users/tk/Desktop/code-failures-mcp/dist/index.js"],
"env": {
"BRAIN_PATH": "/Users/tk/Desktop/brain/code_failures"
}
}
}
}CLAUDE.md Integration
Add this to your project's CLAUDE.md to make Claude Code automatically use the knowledge base:
# Global Preferences
- Implement only what's explicitly requested. Prefer minimal changes. No unnecessary features, files, or abstractions.
- Check all related functionality before modifying code — update or verify dependents.
- Before writing a script, check what tools are available via MCP or plugins. Prefer existing tools over bash scripts.
- Always use Context7 MCP (resolve-library-id → get-library-docs) before writing code involving external libraries or frameworks.
- ALWAYS call `search_past_bugs` before debugging any error. Call `search_references` before writing integration code. These check your verified fixes first — prioritize over Context7 and web search.
- After solving a bug that took >15 min: draft Symptom/Root Cause/Fix/Prevention, show me for review, then call `file_bug` to save it.
## Git Workflow
- Commit after each logical unit of work with conventional commit messages (feat:, fix:, refactor:, chore:).
- Do not push unless explicitly asked.
- Work on feature branches, never commit directly to main.
## Self-Improving Project CLAUDE.md
When I correct you on something that represents a recurring pattern or architectural decision (not a one-off typo), propose an update to the project's CLAUDE.md. Follow these rules:
**Before writing, check the existing file.** If a similar rule exists, replace or refine it — never duplicate. If the file exceeds 80 lines, identify a lower-value rule to remove before adding.
**How to write rules:**
1. Use absolute directives — start with NEVER or ALWAYS when appropriate
2. Lead with why (1 sentence max), then the concrete rule
3. Include actual commands or file:line references, not abstract descriptions
4. One code example max per rule. No example if the rule is obvious
5. Bullets over paragraphs. No "Warning Signs" sections for trivial rules
**When to update:** Only for corrections that would apply to future sessions — patterns, conventions, architectural decisions, recurring tool preferences. Not for one-off fixes, typos, or task-specific context.
**Two-tier structure:** If the project CLAUDE.md has a summary section at the top, add a one-line summary there and the detailed rule in the appropriate section below.
If the correction is about a library bug or integration pattern (not project-specific), use `file_bug` or `file_reference` instead of updating CLAUDE.md.
After proposing the update, wait for my approval before writing to the file.Test with MCP Inspector
npm run inspectThis opens the MCP Inspector UI where you can test each tool interactively.
How Indexing Works
On startup, the server:
Recursively finds all
.mdfiles underBRAIN_PATHParses YAML frontmatter for metadata (type, library, tags, severity, status)
Extracts structured sections (Symptom, Root Cause, Fix, Prevention) from bug files
Builds a BM25 index with field boosting:
symptom× 3.0 (highest — you search by what you see)title× 2.5library× 2.0rootCause× 1.5tags× 1.5fix× 1.0fullText× 1.0 (fallback for anything else)
Enables fuzzy matching (0.2 edit distance) and prefix search
Watches the directory for changes and auto-rebuilds
Adding New Bugs
Follow the format in your existing knowledge base:
# Create a new bug file
touch /Users/tk/Desktop/brain/code_failures/bugs/<library>-<short-description>.mdTemplate:
---
type: bug
library: <library name>
versions_affected: "<version range>"
status: confirmed
severity: critical|high|medium|low
tags:
- tag1
- tag2
---
# BUG: Short Description
## Symptom
What you see (error messages, behavior)
## Root Cause
Why it happens
## Fix
Working code
## Prevention
How to avoid itThe index auto-rebuilds when files change.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/blueif16/code-failures-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server