- Home
- MCP servers
- Flowbite-Svelte
Flowbite-Svelte
- typescript
5
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"shinokada-flowbite-svelte-mcp": {
"command": "node",
"args": [
"/ABSOLUTE/PATH/TO/flowbite-svelte-mcp/build/server.js"
]
}
}
}You can run a local MCP (Model Context Protocol) server that exposes Flowbite-Svelte component documentation and search capabilities. This server communicates over stdio, so MCP clients launch it and exchange requests to find components, retrieve documentation, list all components, and perform full-text searches, all without relying on external networks at runtime.
How to use
Use an MCP client that supports stdio to interact with the Flowbite-Svelte MCP server. You can start the server locally and point your client to the runtime process. Typical actions include finding a component by name or category, listing all components, fetching full component documentation, and performing full-text searches across the documentation.
How to install
Prerequisites: you need Node.js and a package manager (pnpm is used in examples). Ensure you have Git available to clone the repository.
git clone git@github.com:shinokada/flowbite-svelte-mcp.git
cd flowbite-svelte-mcp
pnpm install
Configuration and running notes
Build the project to generate the runtime server and data files, then run the server for manual testing or debugging.
pnpm run build
# Start the server for manual testing
pnpm run start
Claude Desktop configuration example
If you use Claude Desktop, you can configure the MCP server to run via a local node process. Create or edit the configuration file so Claude can launch the server and communicate over stdio.
{
"mcpServers": {
"flowbite-svelte": {
"command": "node",
"args": ["/ABSOLUTE/PATH/TO/flowbite-svelte-mcp/build/server.js"]
}
}
}
Available actions you can perform with the MCP server
- Find Components — search for components by name or category
- Get Documentation — retrieve full component documentation
- List All Components — obtain a complete list of available components
- Full-Text Search — search across all documentation
Available tools
findComponent
Find a Flowbite-Svelte component and its documentation path
getComponentList
Return a list of all available components with categories
getComponentDoc
Return the full documentation (markdown) for a specific component
searchDocs
Full-text search over all Flowbite-Svelte documentation