svelte5-mcp
by StudentOfJS·★ 64·Score 43
MCP server providing specialized tools and knowledge for Svelte 5 development with runes, snippets, and reactivity patterns.
Overview
This MCP server is designed specifically for Svelte 5 development, offering a comprehensive knowledge base and toolset for modern frontend development. It provides searchable resources covering Svelte 5 concepts, runes system, code examples, and best practices. The server implements multiple intelligent tools for searching knowledge, finding code patterns, generating components, and auditing code against Svelte 5 best practices. Using SQLite with FTS5 for efficient search functionality, it enables developers to quickly find relevant information and generate optimized Svelte 5 code.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this server when working specifically with Svelte 5 development and needing quick access to knowledge about runes, best practices, and code examples.
When NOT to choose this
Avoid if you need support for Svelte 4 or earlier versions, as this server focuses exclusively on Svelte 5 features and patterns.
Tools this server exposes
5 tools extracted from the READMEsearch_knowledgeFind explanations and concepts in the Svelte 5 knowledge base
search_examplesDiscover code patterns and implementations in Svelte 5
generate_with_contextCreate components using curated patterns and knowledge
audit_with_rulesReview code against Svelte 5 best practices
explain_conceptGet detailed explanations of Svelte 5 concepts with examples
Comparable tools
Installation
# Clone and setup
git clone <repository-url>
cd svelte5-mcp-server
# Install dependencies
npm install
# Build the server
npm run build
# Start the server
npm startAdd to Claude Desktop configuration:
{
"mcpServers": {
"svelte5": {
"command": "node",
"args": ["/path/to/svelte5-mcp-server/dist/index.js"],
"env": {}
}
}
}FAQ
- What search capabilities does this server provide?
- The server uses SQLite with FTS5 for full-text search across knowledge base and code examples, with support for tokenization, synonym expansion, result highlighting, and relevance ranking.
- Can this help with Svelte 4 to Svelte 5 migration?
- Yes, it includes migration support patterns for converting reactive statements ($:) to runes, slots to snippets, and event dispatcher to callback props.
Compare svelte5-mcp with
Last updated · Auto-generated from public README + GitHub signals.