Back to Overview
REFERENCEAvailable

MCP Tools Reference

Model Context Protocol tools exposed to AI coding assistants.


Exposed MCP Tools

  • uxdl_get_project — Returns active UXDL project context and module manifest.
  • uxdl_get_slice — Retrieves exact slice screens, states, actions, relations, and acceptance criteria.
  • uxdl_validate — Runs structural validation and contextual linter checks on active UXDL file.

Tool Parameters & Output

TYPESCRIPT
// uxdl_get_slice
Input: { slice_id: "cancellation_flow" }
Output: {
name: "Self-Serve Cancellation",
type: "story",
screens: ["billing", "cancellation_review"],
acceptance: ["AC-01...", "AC-02..."],
graph: { ... } // Resolved screens, states, actions, relations
}