@altrone/mcp
v4.0.0-dev.3
Published
MCP server for Altrone UI component library documentation
Readme
altrone-mcp
MCP server for Altrone UI component library documentation.
Each component has a dedicated Markdown file in docs/ describing its props, usage, and examples.
Tools
| Tool | Description |
|------|-------------|
| list_components | List all documented components |
| get_component_docs | Get full documentation for a component by name |
Setup
npm install
npm run buildClaude Desktop config
Add to claude_desktop_config.json:
{
"mcpServers": {
"altrone": {
"command": "node",
"args": ["/absolute/path/to/altrone-mcp/dist/index.js"]
}
}
}Or for development (no build step):
{
"mcpServers": {
"altrone": {
"command": "npx",
"args": ["tsx", "/absolute/path/to/altrone-mcp/src/index.ts"]
}
}
}Adding a new component
Create docs/ComponentName.md following the existing files as a template. The server picks it up automatically — no code changes needed.
