MCP server for assistant-ui documentation and examples
npm install @assistant-ui/mcp-docs-serverA Model Context Protocol (MCP) server that provides AI assistants with direct access to assistant-ui's documentation and examples.
> 📖 Full Documentation
> For detailed installation instructions, troubleshooting, and advanced usage, visit the complete documentation.
``bashAdd to current project
claude mcp add assistant-ui -- npx -y @assistant-ui/mcp-docs-server
$3
Add to your Claude Desktop configuration:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows: %APPDATA%\Claude\claude_desktop_config.json`json
{
"mcpServers": {
"assistant-ui": {
"command": "npx",
"args": ["-y", "@assistant-ui/mcp-docs-server"]
}
}
}
`$3
Add to
.cursor/mcp.json (project) or ~/.cursor/mcp.json (global):`json
{
"mcpServers": {
"assistant-ui": {
"command": "npx",
"args": ["-y", "@assistant-ui/mcp-docs-server"]
}
}
}
`$3
Add to
~/.codeium/windsurf/mcp_config.json:`json
{
"mcpServers": {
"assistant-ui": {
"command": "npx",
"args": ["-y", "@assistant-ui/mcp-docs-server"]
}
}
}
`$3
Add to
.vscode/mcp.json in your project:`json
{
"servers": {
"assistant-ui": {
"command": "npx",
"args": ["-y", "@assistant-ui/mcp-docs-server"],
"type": "stdio"
}
}
}
`$3
Add to
settings.json (open via cmd+, or zed: open settings):`json
{
"context_servers": {
"assistant-ui": {
"command": {
"path": "npx",
"args": ["-y", "@assistant-ui/mcp-docs-server"],
"env": {}
},
"settings": {}
}
}
}
`Tools
- assistantUIDocs - Retrieve documentation by path
- assistantUIExamples - Access complete example projects
Managing the Server
$3
`bash
View configured servers
claude mcp listGet server details
claude mcp get assistant-uiRemove the server
claude mcp remove assistant-uiRestart the server
claude mcp restart assistant-ui
``MIT