@seed-design/docs-mcp
v0.1.0
Published
The official MCP server for SEED Design documentation
Readme
@seed-design/docs-mcp
MCP (Model Context Protocol) tools for accessing SEED Design documentation. This package provides LLMs with structured access to SEED Design's React and Breeze component documentation, changelogs, and more.
Installation
npm install @seed-design/docs-mcp
# or
bun add @seed-design/docs-mcpUsage
As a stdio MCP server (CLI)
For use with Claude Desktop or other MCP clients:
# Global installation
npm install -g @seed-design/docs-mcp
seed-docs-mcp
# Or via npx
npx @seed-design/docs-mcpIntegration with Claude Desktop
Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"seed-docs": {
"command": "npx",
"args": ["-y", "@seed-design/docs-mcp"]
}
}
}Or if installed globally:
{
"mcpServers": {
"seed-docs": {
"command": "seed-docs-mcp"
}
}
}Programmatic Usage
For building custom MCP servers or integrating into your own applications:
import { server } from '@seed-design/docs-mcp/server';
import { initializeTools } from '@seed-design/docs-mcp/tools';
// Initialize the tools
await initializeTools(server);
// Use with your preferred transport
// Example: stdio, HTTP, SSE, etc.Available Tools
list_react_components- List all available SEED React componentsget_react_component- Get detailed documentation for a specific React componentget_react_changelog- Get changelog for SEED React packagelist_breeze_components- List all available SEED Breeze utility componentsget_breeze_component- Get detailed documentation for a specific Breeze component
Development
# Install dependencies
bun install
# Run in development mode (stdio)
bun run dev
# Build the package
bun run build
# Clean build artifacts
bun run clean