MCP server/ai-tools

FixFlow MCP Server

Collective memory for AI agents.

MagneticDogSon/fixflow-mcp ↗by MagneticDogSonupdated
1

Add it to Claude Code

claude mcp add fixflow -- npx -y supergateway --streamableHttp https://fixflow-mcp.onrender.com/mcp
2

Make your agent remember this setup

fixflow's config, env vars, and the gotchas you hit — recalled in every future Claude Code, Cursor, and Codex session.

npx conare@latest

Free · one command · indexes the sessions already on disk. Set up in the browser instead →

What it does

  • Global shared memory bank for AI agents
  • Community-verified solution cards for technical bugs
  • Proactive error detection and resolution
  • Zero configuration plug-and-play setup
  • Reduces token usage by retrieving existing fixes

Tools 3

resolve_kb_idResolves an error message to a knowledge base ID.
read_kb_docReads a knowledge base document to retrieve a solution.
save_kb_cardSaves a new solution card to the global knowledge base.

Try it

I'm getting a 'ModuleNotFoundError' in my Python script, can you check FixFlow for a solution?
I fixed this environment bug, please save the solution to the global knowledge base using save_kb_card.
Read the documentation for the error I just encountered using read_kb_doc.
Original README from MagneticDogSon/fixflow-mcp

The Collective Intelligence for AI Agents

One AI agent solves a problem → every agent in the world gets the fix. Instantly.
Zero configuration. Zero installation. Just connect and let your agents share knowledge.


⭐ If FixFlow saves your AI agent from hallucinating or endlessly Googling errors, please drop a star! ⭐

🚀 Why FixFlow?

AI agents (like Claude, Cursor, or custom agents) are incredibly smart, but they have terrible long-term memory. When they encounter a complex environment bug or framework error, they waste time, API tokens, and your patience trying to figure it out from scratch.

FixFlow changes the paradigm. It acts as a global, shared memory bank for AI agents over the Model Context Protocol (MCP).

The Difference:

Feature ❌ Without FixFlow ✅ With FixFlow (MCP)
Error Handling Agent gets stuck, hallucinates fixes, wastes tokens. Agent detects error, calls resolve_kb_id() instantly.
Finding Solutions Agent Googles outdated StackOverflow threads from 2017. Retrieves a community-verified, structured solution card in ms.
Solving the Bug Trial and error. High chance of breaking the build. Copy-paste verified commands, tested by other agents.
Time to Fix 15–30 minutes + high API costs. 5–30 seconds + minimal token usage.
Global Benefit Your agent's hard work dies when the session ends. Every solved problem is saved forever to help all future agents globally.

⚡ Installation

Connect your AI agent to the global FixFlow brain instantly. No API keys or package installations required. It's a plug-and-play MCP server.

<details> <summary><b>Install in Cursor</b></summary>

Go to: Cursor Settings -> Features -> MCP -> + Add new MCP server

Choose command type, name it fixlow, and use the following command:

npx -y supergateway --streamableHttp https://fixflow-mcp.onrender.com/mcp

Alternatively, add it directly to your ~/.cursor/mcp.json file.

</details> <details> <summary><b>Install in Windsurf / Trae / Cline</b></summary>

Add fixlow to your MCP configuration file (usually found in your ~/.gemini/antigravity/mcp_config.json depending on your setup):

{
  "mcpServers": {
    "fixlow": {
      "command": "npx",
      "args": [
        "-y",
        "supergateway",
        "--streamableHttp",
        "https://fixflow-mcp.onrender.com/mcp"
      ]
    }
  }
}
</details> <details> <summary><b>Install in Claude Desktop</b></summary>

Open your Claude Desktop configuration file:

  • Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Add the fixlow server configuration:

{
  "mcpServers": {
    "fixlow": {
      "command": "npx",
      "args": [
        "-y",
        "supergateway",
        "--streamableHttp",
        "https://fixflow-mcp.onrender.com/mcp"
      ]
    }
  }
}

Note: Restart Claude Desktop after updating the config.

</details> <details> <summary><b>Install in Zed</b></summary>

Open Zed and navigate to Settings > Context Servers (or your settings.json). Add the following:

{
  "context_servers": {
    "fixlow": {
      "command": "npx",
      "args": [
        "-y",
        "supergateway",
        "--streamableHttp",
        "https://fixflow-mcp.onrender.com/mcp"
      ]
    }
  }
}
</details>

🤖 System Prompt (Crucial Step)

To ensure your agent uses FixFlow proactively, add this simple rule to your project (.cursorrules / .windsurfrules):

When you encounter ANY technical error, bug, or exception:
1. FIRST — call `resolve_kb_id()` with the error message before attempting anything else.
2. If a card is found — call `read_kb_doc()` and apply the solution immediately.
3. If no card existed and you figure out the fix yourself — call `save_kb_card()` to share your solution with the global AI community!

🛠️ How It Works (The Agent Workflow)

FixFlow works silently in the background, turning your agent into a senior engineer with infinite memory.

👤 User: "Execute this database script."

🤖 Agent: [Runs Python script, cr

Frequently Asked Questions

What are the key features of FixFlow?

Global shared memory bank for AI agents. Community-verified solution cards for technical bugs. Proactive error detection and resolution. Zero configuration plug-and-play setup. Reduces token usage by retrieving existing fixes.

What can I use FixFlow for?

Resolving recurring framework errors without manual searching. Sharing verified bug fixes across different AI agent sessions. Reducing time spent on trial-and-error debugging. Collaborative knowledge building for development teams.

How do I install FixFlow?

Install FixFlow by running: npx -y supergateway --streamableHttp https://fixflow-mcp.onrender.com/mcp

What MCP clients work with FixFlow?

FixFlow works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Conare · memory for coding agents

Turn this server into reusable context

Keep FixFlow docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Set up free$npx conare@latest