Skip to main content
Glama

Deep Code Reasoning MCP Server

by haasonsaas
MIT License
19

run_hypothesis_tournament

Identify root causes of code issues by running a competitive hypothesis tournament. Multiple AI conversations test and score theories in parallel, narrowing down solutions through evidence-based elimination rounds.

Instructions

Run a competitive hypothesis tournament to find root causes. Multiple AI conversations test different theories in parallel, with evidence-based scoring and elimination rounds.

Input Schema

NameRequiredDescriptionDefault
claude_contextYes
issueYesDescription of the issue to investigate
tournament_configNo

Input Schema (JSON Schema)

{ "properties": { "claude_context": { "properties": { "attempted_approaches": { "description": "What Claude Code already tried", "items": { "type": "string" }, "type": "array" }, "code_scope": { "properties": { "entry_points": { "description": "Specific functions/methods to start from", "type": "array" }, "files": { "description": "Files to analyze", "items": { "type": "string" }, "type": "array" }, "service_names": { "description": "Services involved in cross-system analysis", "items": { "type": "string" }, "type": "array" } }, "required": [ "files" ], "type": "object" }, "partial_findings": { "description": "Any findings Claude Code discovered", "type": "array" }, "stuck_description": { "description": "Description of where Claude Code got stuck", "type": "string" } }, "required": [ "attempted_approaches", "partial_findings", "stuck_description", "code_scope" ], "type": "object" }, "issue": { "description": "Description of the issue to investigate", "type": "string" }, "tournament_config": { "properties": { "max_hypotheses": { "description": "Number of initial hypotheses to generate (default: 6)", "maximum": 20, "minimum": 2, "type": "number" }, "max_rounds": { "description": "Maximum tournament rounds (default: 3)", "maximum": 5, "minimum": 1, "type": "number" }, "parallel_sessions": { "description": "Max concurrent conversations (default: 4)", "maximum": 10, "minimum": 1, "type": "number" } }, "type": "object" } }, "required": [ "claude_context", "issue" ], "type": "object" }

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/haasonsaas/deep-code-reasoning-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server