@baklavue/mcp
v1.0.0
Published
MCP server for Baklavue - Vue 3 UI kit for Baklava Design System
Maintainers
Readme
@baklavue/mcp
MCP (Model Context Protocol) server for Baklavue. Exposes Baklavue component APIs, composables, and documentation to AI assistants like Cursor, Claude, and Windsurf.
Usage
From the Baklavue Repo
# From repo root
bun run mcp
# Or from this package
cd packages/mcp && bun run startFrom Another Project (when published)
npx @baklavue/mcpCursor Configuration
Add to .cursor/mcp.json:
{
"mcpServers": {
"Baklavue": {
"command": "bun",
"args": ["run", "--cwd", "/path/to/baklavue", "mcp"]
}
}
}Or with npx (when published):
{
"mcpServers": {
"Baklavue": {
"command": "npx",
"args": ["@baklavue/mcp"]
}
}
}Tools
| Tool | Description |
|------|-------------|
| list_components | List all Bv* components with categories |
| get_component | Full component documentation |
| get_component_metadata | Props, events, slots only |
| list_composables | List composables |
| get_composable | Composable documentation |
| search_components_by_category | Filter by category |
| get_documentation_page | Get guide pages |
| list_documentation_pages | List guide pages |
Build
bun run buildDocumentation
See the MCP Guide for full setup instructions and usage examples.
