The Starwind UI MCP Server
Starwind ui mcp mcp server connects Starwind Ui MCP to AI assistants that speak the Model Context Protocol. The Starwind UI MCP Server.
A TypeScript implementation of a Model Context Protocol (MCP) server for Starwind UI and Starwind Pro, providing tools to help developers work with Starwind UI and Pro components when leveraging AI tools like Codex, Claude Code, and Cursor.
The Model Context Protocol (MCP) is a protocol for extending AI capabilities through local servers. This implementation provides Starwind UI-specific tools to enhance AI assistant capabilities when working with Starwind UI. For more information about MCP itself, please visit the official documentation.
Once connected, the assistant can call these 4 tools directly:
starwind_init — Generates init commands for new Starwind UI projects, Pro by defaultstarwind_docs — Fetches live documentation from starwind.dev with caching and topic filteringstarwind_add — Generates validated install commands with package manager detectionstarwind_search — Searches Starwind UI components and Starwind Pro blocks with CLI-shaped filtersSetup follows the standard MCP pattern: clone or install the server, then register it in your client's configuration file and restart the client. The configuration snippets on this page cover Claude Desktop, Claude Code and Cursor.
Knowledge and memory servers address the most frustrating trait of language models — walking into every conversation with no recollection of the last one. Starwind Ui MCP sits in that group, and the shape of its toolset — starwind_init, starwind_docs, starwind_add among others — tells you what it is really for. Worth comparing against the other knowledge memory servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.
| Tool | What it does |
|---|---|
| starwind_init | Generates init commands for new Starwind UI projects, Pro by default |
| starwind_docs | Fetches live documentation from starwind.dev with caching and topic filtering |
| starwind_add | Generates validated install commands with package manager detection |
| starwind_search | Searches Starwind UI components and Starwind Pro blocks with CLI-shaped filters |
**Claude Code:**
```json title=".mcp.json"
{
"mcpServers": {
"starwind-ui": {
"command": "npx",
"args": ["-y", "@starwind-ui/mcp"],
"env": {}
}
}
}Configuration as documented by the project. Restart the client after saving.
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.