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_fckdot
wsai_fckdot is a public, privacy-first MCP server for diagnosing hooks, plugins, skills, MCP integrations, configuration, runtimes, networking and PC system state. It also turns a chaotic multi-agent setup into one canonical manifest, isolated account profiles and generated adapters for each supported tool.
It never repairs a machine automatically, never interpolates user input into commands, never elevates privileges and never sends telemetry. Account bindings accept environment-variable references rather than values; common credential-shaped text is rejected, but users must still keep secrets out of free-form instructions. Setup files are written only after a reviewed plan and explicit consent.
Verified scope
38 read-only controls in 12 domains;
100% catalog design coverage on Windows, Linux and macOS;
15 diagnostic rule families;
16 synthetic evaluation cases with a 100% success gate;
10 MCP tools;
100% Python statement coverage enforced in CI;
tested redaction of common sensitive formats and explicit execution consent.
compatibility with both legacy MCP handshakes and the stateless
2026-07-28era.one canonical
.wsai_fckdot/setup.jsonformat, five tool adapters and secret-free account profile activators.
The meaning of “100%” is precise. Design coverage means every declared catalog control has a probe on every supported platform. Runtime coverage means every requested probe completed successfully on one execution. Neither metric claims that every possible future application or peripheral is known. See the coverage model.
Related MCP server: triage-agent-mcp
MCP tools
Tool | Purpose | Reads the PC by default? |
| Rank causes and propose least-invasive corrections | No |
| List the 15 diagnostic rule families | No |
| Browse the 38 controls | No |
| Measure catalog design coverage | No |
| Plan or execute selected read-only probes | Plan only |
| Run public synthetic regression cases | No |
| Explain adapters, profiles and precedence | No |
| Inventory setup metadata, never variable values | No, until consent |
| Compare a canonical manifest and preserve conflicts | No, until consent |
| Apply the exact reviewed plan | Yes, explicit consent |
collect_context executes only when both execute=true and consent=true. Output is excluded unless include_output=true; included output is passed through the tested redactor and truncated. As with any pattern-based redaction, review it before sharing.
One setup instead of endless .xxx folders
wsai_fckdot uses .wsai_fckdot/setup.json as the project source of truth. Write instructions once, declare account profiles using environment-variable references, and select the adapters your tools need. It can generate:
AGENTS.md;.cursor/rules/wsai_fckdot.mdc;CLAUDE.md;GEMINI.md;.github/copilot-instructions.md;PowerShell and POSIX-shell profile activators under
.wsai_fckdot/profiles/.
The activators contain no secrets. They clear declared target variables before mapping the chosen profile from references such as env:OPENAI_WORK_API_KEY, preventing personal and work account state from remaining mixed in one shell.
wsai_fckdot inventories known tool directories and counts unknown dot-directories. Unknown names are hidden by default. It does not delete or move any .xxx directory, does not follow setup symlinks during inventory, and refuses to overwrite an existing adapter file unless it starts with an exact wsai_fckdot ownership header.
The workflow is deliberately simple:
inspect metadata;
create a canonical manifest;
review a plan containing
create,update,retire,unchangedandblockedactions;apply that exact plan ID with explicit consent;
activate the selected account profile and restart active agent sessions.
Read the complete setup governance guide and start from setup.example.json.
Covered domains
System identity, time and locale; CPU, memory and devices; storage; processes, services, startup and scheduled tasks; environment and PATH; log availability; adapters, DNS, proxy and listeners; permissions, firewall, certificates, protection and policies; package managers, language runtimes, shells, Git and editors; MCP, hooks, plugins, skills, Codex runtime, remote-control prerequisites and chat streaming; containers and guest environments; update visibility.
Installation
Requires Python 3.10 or newer.
git clone https://github.com/Whytcard-Swiss-AI/wsai_fckdot.git
cd wsai_fckdot
python -m venv .venv
# Windows PowerShell: .venv\Scripts\Activate.ps1
# Linux/macOS: source .venv/bin/activate
python -m pip install -e .
python -m wsai_fckdot self-test
python -m wsai_fckdot setup-catalog
python -m wsai_fckdot setup-inventory C:\absolute\project --consent
python -m wsai_fckdot setup-plan C:\absolute\project setup.example.json --consent
# Review the plan_id, then:
python -m wsai_fckdot setup-apply C:\absolute\project setup.example.json PLAN_ID --consentFor development:
python -m pip install -e ".[dev]"
python -m pytest -qMCP configuration
Use the virtual environment's absolute Python executable:
{
"mcpServers": {
"wsai_fckdot": {
"command": "/absolute/path/to/wsai_fckdot/.venv/bin/python",
"args": ["-m", "wsai_fckdot", "serve"],
"cwd": "/absolute/path/to/wsai_fckdot"
}
}
}On Windows, command normally ends in .venv\\Scripts\\python.exe.
See MCP compatibility for protocol versions and wire behavior.
Safe workflow
First diagnose only the evidence already available:
{
"description": "The deploy hook is not found after enabling the plugin",
"problem_type": "hook",
"logs": ["ERROR hook deploy: not found"],
"config": {"hooks": [{"name": "deploy"}]},
"components": ["release-tools", "deploy"]
}Then inspect the catalog or plan a narrow collection:
{
"control_ids": ["agents.hooks", "agents.plugins", "environment.path"],
"platform": "windows",
"execute": false
}After the user explicitly approves those exact controls:
{
"control_ids": ["agents.hooks", "agents.plugins", "environment.path"],
"platform": "windows",
"execute": true,
"consent": true,
"include_output": false
}Add the returned observations to a second diagnose call. A failed or unavailable probe becomes an explicit observation-incomplete finding.
CLI
python -m wsai_fckdot catalog
python -m wsai_fckdot coverage --platform windows
python -m wsai_fckdot collect agents.hooks agents.plugins --platform windows
python -m wsai_fckdot collect agents.hooks --platform windows --execute --consent
python -m wsai_fckdot diagnose problem.json --out reports
python -m wsai_fckdot self-testThe first collect command only produces a plan. The second explicitly executes one allowlisted probe and still omits output.
Agent skills
Three reusable public skills are included:
wsai_fckdot-installinstalls and verifies the MCP without collecting machine data;wsai_fckdot-useguides diagnosis, consent, narrow collection and post-fix verification;wsai_fckdot-setupguides setup inventory, conflict-safe consolidation, account profiles and approved application.
Source archives and wheels both include every skill's SKILL.md and agents/openai.yaml under the distribution's share/wsai_fckdot/skills data directory. Installing the Python package does not silently activate a skill in an agent client; copy or link the selected skill into that client's documented skill directory.
Extending wsai_fckdot
Controls live in wsai_fckdot.catalog; diagnostics live in wsai_fckdot.diagnostics. Every new control needs Windows, Linux and macOS probes, synthetic tests and an updated catalog version. Every new diagnostic needs a stable ID, evidence, explanation, safe fixes and positive/negative evaluation cases. See CONTRIBUTING.md.
Security
Read SECURITY.md before enabling output collection or setup application. Never share a report without reviewing it, because no generic redactor can guarantee removal of every private value from arbitrary third-party output.
License
MIT.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
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 Connectors
MCP server for skill documentation, generated by doc2mcp.
Scan any MCP server for tool-poisoning, security, auth & license. Trust score before install.
Security scanner for MCP servers. Detect vulnerabilities, prompt injection, and tool poisoning.
MCP server for progressive tool usage at any scale (see https://klavis.ai)
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAn 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
- AlicenseNot gradedqualityDmaintenanceMCP server that guides an AI agent through stack trace triage, from raw error to the commit and PR that introduced it.2MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for TuringWell, the agent-native Q&A platform for executable, verifiable fixes.16MIT
- FlicenseNot gradedqualityCmaintenanceMCP server that helps AI agents inspect Minecraft project evidence (crash logs, mod files, datapacks) before writing development code.2-
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_fckdot'
If you have feedback or need assistance with the MCP directory API, please join our Discord server