WSAI FixCenter
OfficialClick 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., "@WSAI FixCenterwhy is my deploy hook missing after enabling release-tools?"
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.
WSAI FixCenter
WSAI FixCenter is an evidence-first MCP server for diagnosing problems around hooks, plugins, skills and configuration. It does not silently modify a workspace: it collects supplied evidence, runs targeted checks, ranks probable causes and returns concrete, reviewable fixes.
What it does
accepts a problem description plus logs, safe configuration fragments, affected components, environment metadata and an optional workspace reference;
runs diagnostics selected by problem type through an extensible registry;
returns findings with severity, confidence, evidence, explanation, diagnostic ID and suggested fixes;
validates input sizes and types and keeps protocol output on stdout while operational logs go to stderr;
exposes a small MCP surface:
diagnoseandlist_diagnostics;supports a local CLI and JSON report export.
The initial diagnostics cover missing components, malformed hooks/plugins/skills sections, and suspicious hook ordering/timeouts. Add a diagnostic by implementing a function in fixcenter/diagnostics/ and registering a Diagnostic in DEFAULT_DIAGNOSTICS.
Related MCP server: triage-agent-mcp
Installation
Requires Python 3.10 or newer.
python -m venv .venv
# macOS/Linux: source .venv/bin/activate
# Windows PowerShell: .venv\\Scripts\\Activate.ps1
python -m pip install -e .MCP configuration
For an MCP client that supports stdio, point it to:
{
"mcpServers": {
"wsai-fixcenter": {
"command": "python",
"args": ["-m", "fixcenter", "serve"],
"cwd": "/absolute/path/to/Wsai-fixCenter"
}
}
}The server implements JSON-RPC MCP initialization, tools/list, and tools/call. It never executes arbitrary commands from a problem payload and does not apply fixes automatically.
Example call
{
"description": "The deploy hook is not found after enabling the plugin",
"problem_type": "hook",
"logs": ["ERROR hook deploy: not found", "plugin loaded: release-tools"],
"config": {"hooks": [{"name": "deploy"}]},
"components": ["release-tools", "deploy"]
}The report contains a stable diagnostic ID, for example component-missing, plus ranked evidence and next actions. Redact tokens, API keys, cookies and private user data before sending logs or configuration.
CLI
echo '{"description":"Plugin not found","problem_type":"plugin","logs":["not found"]}' | python -m fixcenter diagnose
python -m fixcenter diagnose problem.json --out reportsDevelopment
python -m pip install -e . pytest
python -m pytest -qThe test suite covers ranking, validation, malformed configuration detection and the executable package entry point. The project is intentionally dependency-light so it can run inside constrained MCP hosts.
Safety and scope
FixCenter is a diagnostic engine, not an autonomous repair agent. A proposed fix is advice until a human reviews it. Workspace paths are treated as context only in this release; the server does not read files, install packages, change settings or contact third-party services. Future collectors should be explicit, bounded, redacted and opt-in.
License
MIT.
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.
Related MCP Servers
- Alicense-qualityCmaintenanceAn external MCP server for diagnosing Minecraft servers via backup analysis, local runtime, or Docker runtime, offering tools for plugin inspection, log analysis, configuration linting, and performance diagnostics.1MIT
- Alicense-qualityDmaintenanceMCP server that guides an AI agent through stack trace triage, from raw error to the commit and PR that introduced it.2MIT
- Alicense-qualityCmaintenanceMCP server for TuringWell, the agent-native Q&A platform for executable, verifiable fixes.8MIT
- Flicense-qualityCmaintenanceMCP server that helps AI agents inspect Minecraft project evidence (crash logs, mod files, datapacks) before writing development code.3
Related MCP Connectors
Scans MCP servers for tool poisoning, prompt injection and supply chain risks.
MCP server for skill documentation, generated by doc2mcp.
Security scanner for MCP servers. Detect vulnerabilities, prompt injection, and tool poisoning.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/Whytcard-Swiss-AI/Wsai-fixCenter'
If you have feedback or need assistance with the MCP directory API, please join our Discord server