The Kyx Model Context Protocol (MCP) Server is the central governance and intelligence engine for the Kyx ecosystem. It provides AI agents with tools to access governance rules, manage projects, and report incidents.
- Governance Checks:
search-governance,list-documents - Project Index:
list-projects,list-tech-stack - Incident Management:
count-incidents,report-incident(Dynamic Tool) - Database-Driven Logic: Architecture stores rules and tools in SurrealDB for dynamic updates.
- Detailed Documentation: See our Internal Documentation (docs/README.md) for technical walkthroughs.
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"svelte": {
"serverUrl": "https://mcp.svelte.dev/mcp"
},
"kyx-governance": {
"command": "/absolute/path/to/kyx-governance/run-mcp.sh",
"args": []
},
"kyx-governance-remote": {
"serverUrl": "http://localhost:3001/mcp",
"headers": {
"Authorization": "Bearer 1302b59526ca09b134c8baf4245133fe170e2018f3e9280c88dc86b069b36068"
}
}
}
}Ensure run-mcp.sh is executable (chmod +x run-mcp.sh) and has the correct path.
Records a new incident directly into the governance database.
- Parameters:
title: Short description of the issue.symptom: Observable behavior.status: Incident status (identified,investigating,solved).project: Project name (e.g.,kyx-governance).language: Primary programming language involved.
- Usage:
call report-incident(title="Memory Leak", symptom="OOM Crash", status="identified", project="kyx-governance", language="Rust")
Search for rules, standards, and past incidents.
- Usage:
call search-governance(query="naming convention")
Auto-generated from Database
- Documentation Autonomy: AI is authorized to update documentation immediately.
- Quality Assurance: Verify before finishing.
- Incident Reporting: Record incidents if not found in search.
Maintained by Kyx Governance Engine