Svelte language server for component development and SvelteKit projects.
## Svelte LSP MCP Server: Svelte and SvelteKit Development The **Svelte LSP MCP Server** integrates Svelte language tools into Google Antigravity, providing complete Svelte component development with SvelteKit routing and TypeScript support. ### Why Svelte LSP MCP? Svelte compiles to minimal JavaScript. The Svelte LSP MCP provides: - **Component Intelligence**: Full .svelte file support - **SvelteKit**: Routing and layouts - **TypeScript**: Type checking in components - **Preprocessors**: SCSS, Less, PostCSS ### Key Features #### 1. Component Support Svelte-specific features: - Reactive statements - Store subscriptions - Slot forwarding - Event dispatching #### 2. SvelteKit Integration Full framework support: - File-based routing - Load functions - Form actions - Server routes ### Configuration ```json { "mcpServers": { "svelte-lsp": { "command": "svelteserver", "args": ["--stdio", "--mcp"] } } } ``` The Svelte LSP MCP enables productive Svelte development with compile-time optimizations.
{
"mcpServers": {
"svelte-lsp": {}
}
}