MCP Catalogs
Home

svelte5-mcp

by StudentOfJS·64·Score 43

MCP server providing specialized tools and knowledge for Svelte 5 development with runes, snippets, and reactivity patterns.

developer-toolsai-llmsearch
8
Forks
2
Open issues
11 mo ago
Last commit
2d ago
Indexed

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:

you:Searching for Svelte 5 concepts and runes explanations during development
you:Generating modern Svelte 5 components with optimized patterns and best practices
you:Auditing existing Svelte code for optimization opportunities and migration to Svelte 5
you:What search capabilities does this server provide?
you:Can this help with Svelte 4 to Svelte 5 migration?

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 README
  • search_knowledge

    Find explanations and concepts in the Svelte 5 knowledge base

  • search_examples

    Discover code patterns and implementations in Svelte 5

  • generate_with_context

    Create components using curated patterns and knowledge

  • audit_with_rules

    Review code against Svelte 5 best practices

  • explain_concept

    Get detailed explanations of Svelte 5 concepts with examples

Comparable tools

svelte-mcpjavascript-mcptypescript-mcp

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 start

Add 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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.