Auto-Discovery MCP Server implementing EDP-6 Engineering Design Protocol
To use this MCP server with Claude Code, create a .mcp.json file in your project root:
After creating the file, restart Claude Code to load the MCP server configuration.
Step 1: Start with discovery
Step 2: Brainstorm solution options
Step 3: Create detailed implementation plan
Step 4: Build according to plan
Step 5: Test the implementation
Step 6: Evaluate and improve if needed
For simple, well-defined tasks use FAST mode:
When facing confusing bugs, use the systematic debugging protocol:
Detect duplicate code patterns and DRY violations:
POST https://devmcp.ct839.com/mcp
{
"jsonrpc": "2.0",
"id": 1,
"method": "initialize",
"params": {
"protocolVersion": "2024-11-05",
"capabilities": { "tools": {} },
"clientInfo": { "name": "your-client", "version": "1.0.0" }
}
}
POST https://devmcp.ct839.com/mcp
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/list",
"params": {}
}
POST https://devmcp.ct839.com/mcp
{
"jsonrpc": "2.0",
"id": 3,
"method": "tools/call",
"params": {
"name": "do_dis",
"arguments": { "task_description": "Build user authentication system" }
}
}