fixflow
Server Details
Collective memory for AI agents. One agent solves a bug — every agent gets the fix instantly.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- MagneticDogSon/fixflow-mcp
- GitHub Stars
- 0
- Server Listing
- FixFlow
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.7/5 across 3 of 3 tools scored.
Each tool has a distinct, non-overlapping purpose: resolve_kb_id searches for KB cards, read_kb_doc reads a specific card's content, and save_kb_card writes new cards or reports outcomes. The descriptions clearly define their roles in the troubleshooting workflow (first, second, and final steps), leaving no ambiguity about when to use each.
All tool names follow a consistent verb_noun pattern with snake_case: resolve_kb_id, read_kb_doc, and save_kb_card. The verbs (resolve, read, save) are distinct and descriptive, and the nouns (kb_id, kb_doc, kb_card) are related to the domain, making the naming predictable and easy to understand.
With 3 tools, the count is appropriate for a focused troubleshooting workflow, covering search, read, and write operations. It feels slightly thin but reasonable, as each tool is essential and well-scoped for the server's purpose of managing a knowledge base for technical issues.
The tool set provides complete coverage for the KB domain: resolve_kb_id enables discovery, read_kb_doc enables consumption, and save_kb_card enables creation and feedback. This covers the full lifecycle from finding solutions to applying them and contributing back, with no obvious gaps for the intended troubleshooting workflow.
Available Tools
3 toolsread_kb_docInspect
SECOND STEP in the troubleshooting workflow. Read the full content and solution of a specific Knowledge Base card.
Returns the card content WITH reliability metrics and related cards so you can assess trustworthiness and explore connected issues.
WHEN TO USE:
Call this ONLY after obtaining a valid
kb_idfrom theresolve_kb_idtool.
INPUT:
kb_id: The exact ID of the card (e.g., 'CROSS_DOCKER_001').
OUTPUT:
Returns reliability metrics followed by the full Markdown content of the card, plus related cards.
You MUST apply the solution provided in the card to resolve the user's issue.
After applying, you MUST call
save_kb_cardwithoutcomeparameter to close the feedback loop.
| Name | Required | Description | Default |
|---|---|---|---|
| kb_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
resolve_kb_idInspect
FIRST STEP in any troubleshooting workflow. Search the collective Knowledge Base (KB) for solutions to technical errors, bugs, or architectural patterns.
Uses full-text search across titles, content, tags, and categories. Results are ranked by relevance and success rate.
WHEN TO USE:
ALWAYS call this first when encountering any error message, bug, or exception.
Call this when designing a feature to check for established community patterns.
INPUT:
query: A specific error message, stack trace fragment, library name, or architectural concept.category: (Optional) Filter by category (e.g., 'devops', 'terminal', 'supabase').
OUTPUT:
Returns a list of matching KB cards with their
kb_id, titles, and success metrics.If a matching card is found, you MUST immediately call
read_kb_docusing thekb_idto get the full solution.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | ||
| category | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
save_kb_cardInspect
WRITE to the Knowledge Base. This tool has TWO modes:
MODE 1 — SAVE a new card: Provide content with full Markdown following the ACTIONABLE schema below.
MODE 2 — REPORT OUTCOME: Provide kb_id + outcome ('success' or 'failure').
WHEN TO USE:
Mode 1: After successfully fixing a bug IF no existing KB card covered it.
Mode 2: ALWAYS after applying a solution from
read_kb_docand running verification.
INPUT:
content: (Mode 1) Full Markdown KB card content — follow the EXACT template below.overwrite: (Mode 1) Set to True to update an existing card.kb_id: (Mode 2) ID of the card to report outcome for.outcome: (Mode 2) 'success' or 'failure'.enrichment: (Mode 2, optional) Additional context to merge into the card when outcome is 'failure'.
━━━ CARD TEMPLATE (Mode 1) — copy this structure EXACTLY ━━━
---
kb_id: "[PLATFORM]_[CATEGORY]_[NUMBER]" # e.g. WIN_TERM_001, CROSS_DOCKER_002
title: "[Short Title — max 5 words]"
category: "[terminal|devops|supabase|fastmcp|network|database|...]"
platform: "[windows|linux|macos|cross-platform]"
technologies: [tech1, tech2]
complexity: [1-10]
criticality: "[low|medium|high|critical]"
created: "[YYYY-MM-DD]"
tags: [tag1, tag2, tag3]
related_kb: []
---
# [Short Title — max 5 words]
> **TL;DR**: [One sentence — what's the problem + solution]
> **Fix Time**: ~[X min] | **Platform**: [Windows/Linux/macOS/All]
---
## 🔍 This Is Your Problem If:
- [ ] [Symptom 1 — specific symptom or error message]
- [ ] [Symptom 2 — specific error code or log line]
- [ ] [Symptom 3 — environment/version condition]
**Where to Check**: [console / logs / env / task manager / etc.]
---
## ✅ SOLUTION (copy-paste)
### 🎯 Integration Pattern: [Global Scope] / [Inside Init] / [Event Handler]
```[language]
# [One-line comment — what this code does]
[depersonalized code WITHOUT specific paths, use __VAR__ for things to replace]⚡ Critical (won't work without this):
✓ [Critical Point 1] — [why it's essential]
✓ [Critical Point 2] — [common mistake to avoid]
📌 Versions:
Works: [OS/library versions where confirmed working]
Doesn't Work: [OS/library versions where known broken]
✔️ Verification (<30 sec)
[single command to verify the fix worked]Expected: ✓ [Specific output or behavior that confirms success]
If it didn't work → see Fallback below ⤵
🔄 Fallback (if main solution failed)
Option 1: [approach name]
[command]When: [condition to use this option] | Risks: [what might break]
Option 2: [alternative approach]
[command]When: [condition] | Risks: [what might break]
💡 Context (optional)
Root Cause: [1 sentence — why this problem occurs]
Side Effects: [what might change after applying the fix]
Best Practice: [how to avoid this in future — 1 point]
Anti-Pattern: ✗ [what NOT to do — common mistake]
Applicable: [OS, library versions, conditions] Frequency: [rare / common / very common]
━━━ END OF TEMPLATE ━━━
RULES for ACTIONABLE cards:
1. Solution FIRST — after diagnosis, code immediately
2. Depersonalize — no names, project names, or absolute paths
3. Use `__VAR__` markers for anything the user must replace
4. One Verification command, result visible in <30 sec
5. Fallback — 1-2 options max, always include When/Risks
6. Context at End — WHY is optional reading for curious agents| Name | Required | Description | Default |
|---|---|---|---|
| kb_id | No | ||
| content | No | ||
| outcome | No | ||
| overwrite | No | ||
| enrichment | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Your Connectors
Sign in to create a connector for this server.