FixFlow
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| prompts | {
"listChanged": true
} |
| resources | {
"subscribe": false,
"listChanged": true
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| resolve_kb_idA | 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:
INPUT:
OUTPUT:
|
| read_kb_docA | 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:
INPUT:
OUTPUT:
|
| save_kb_cardA | WRITE to the Knowledge Base. This tool has TWO modes: MODE 1 — SAVE a new card: Provide WHEN TO USE:
INPUT:
━━━ CARD TEMPLATE (Mode 1) — copy this structure EXACTLY ━━━ ⚡ Critical (won't work without this):
📌 Versions:
✔️ Verification (<30 sec)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]When: [condition to use this option] | Risks: [what might break] Option 2: [alternative approach]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] |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool has a clear, distinct purpose: resolve_kb_id searches the KB, read_kb_doc retrieves full content of a specific card, save_kb_card writes new cards or reports outcomes. There is no overlap or ambiguity between them.
All tool names follow a consistent verb_noun pattern in snake_case: resolve_kb_id, read_kb_doc, save_kb_card. The naming is predictable and clear.
With only 3 tools, the server is minimal but covers the essential knowledge base operations: search, read, and write/report. While a few more tools (e.g., delete) could be considered, the count is appropriate for the focused scope.
The tool set forms a complete workflow for troubleshooting: search for a solution, read it, apply it, and report success/failure or save a new card. Missing operations like explicit deletion are minor gaps but do not hinder the primary use case.