loading…
Search for a command to run...
loading…
This MCP server verifies that an agent’s claimed tool output matches the actual response returned by a tool to prevent invented or distorted results. It flags m
This MCP server verifies that an agent’s claimed tool output matches the actual response returned by a tool to prevent invented or distorted results. It flags mismatches, omissions, and invented fields to ensure downstream logic only processes verified tool data.
A standalone MCP server that verifies whether an agent’s claimed tool output matches what the tool actually returned. It prevents invented or distorted tool results from entering downstream logic.
This repository contains the full implementation and runs independently. It does not depend on the full suite.
Add this server to your MCP client configuration (Claude Desktop, Cursor, Windsurf, or any MCP‑compatible environment):
{
"mcpServers": {
"tool_response_suppressor": {
"command": "python3",
"args": ["/path/to/mcp-tool-response-suppressor/server.py"]
}
}
}
- Compares the agent’s claimed tool output to the real tool output
- Flags mismatches, omissions, and invented fields
- Ensures downstream logic receives only verified tool results
- Returns the cleaned tool response plus a list of violations
This suppressor is also included in the consolidated mcp-hallucination-suite, which bundles all four suppressors and provides a meta-orchestrator: https://github.com/steveswain14/mcp-hallucination-suite
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"tool-response-suppressor-mcp": {
"command": "npx",
"args": []
}
}
}