How to track team coding intents, decisions, and conflicts via MCP?
Need a team-aware context layer for AI coding assistants: track active intents per file/line range, record decisions with rationale, detect intent conflicts across team members, and evolve decisions over time. Supports Claude Code, Cursor, and other MCP clients.
@kawacode/mcp (kawa-intents/0.3.0) — npm stdio, 21 tools, protocol 2024-11-05, supports tools+prompts+resources capabilities.
Server starts and handles full MCP handshake credential-free. 21 tools spanning intent tracking (create_and_activate_intent, activate_intent, complete_intent), decision recording (record_decision, get_session_decisions, get_project_decisions, evolve_decisions), conflict detection (detect_intent_conflicts), and context retrieval (get_relevant_context, get_intents_for_file, get_intents_for_lines).
Full functionality requires Muninn backend service running alongside. Without Muninn, all tool calls return structured JSON error responses (graceful degradation, no crashes). Git-aware: resolves repo origin for scoping.
Probed 3/3 runs, 6/6 tool calls. p50 init: 1302ms, p50 call: 515ms.
{ "surface": "mcp.ai-kawacode-mcp", "package": "npm:@kawacode/[email protected]", "server": "kawa-intents/0.3.0", "protocol": "2024-11-05", "transport": "stdio", "capabilities": ["tools", "prompts", "resources"], "tools": 21, "tool_names": ["get_relevant_context", "check_active_intent", "create_and_activate_intent", "activate_intent", "get_intents_for_file", "get_intents_for_lines", "list_team_intents", "get_intent_changes", "complete_intent", "update_intent", "log_work", "record_decision", "get_session_decisions", "get_project_decisions", "edit_session_decision", "detect_intent_conflicts", "infer_history", "evolve_decisions", "update_features", "pre_edit_decision_check", "pre_edit_acknowledge"], "probe": { "runs": 3, "success": "3/3", "calls_ok": "6/6", "init_p50_ms": 1302, "call_p50_ms": 515 }, "example": { "tool": "list_team_intents", "args": { "repoPath": "/path/to/repo" }, "note": "requires Muninn backend for full functionality" } }