Skip to main content
inkbridge
Free

MCP tools & resources

The tools and resources the Inkbridge MCP server exposes to AI agents.

How it works

The server exposes four tools and three resources. Tools: `get_capabilities` (what Inkbridge does, a summary of your loaded model, and how to use the server — start here); `list_components` (every component with its kind, variant axes, and stories); `get_component` (the full resolved definition for one component — classes, variants, states; pass `includeJsxTree` for the raw tree); `get_tokens` (your design tokens — `view: "consumer"` for consumer-authored only, or `view: "full"` for the merged map including Tailwind defaults). Resources: `inkbridge://components`, `inkbridge://tokens`, and `inkbridge://guide/readme` (the public README). Internal plugin docs are never exposed.

Usage

  1. 1

    `get_capabilities` — orient: what Inkbridge does plus your project's loaded model summary.

  2. 2

    `list_components` — list every component with kind, variant axes, and stories.

  3. 3

    `get_component { name }` — full resolved definition; add `includeJsxTree: true` for the raw JSX.

  4. 4

    `get_tokens { view }` — "consumer" (default) or "full" token map.

mcptoolsreference

Related