From 8a2c7ed678ba7a06cc35f695b2c06825e30224b9 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Wed, 27 May 2026 16:19:25 +0200 Subject: [PATCH] Home/Nixinator: Enable sveltejs mcp server --- home/christoph/nixinator/default.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/home/christoph/nixinator/default.nix b/home/christoph/nixinator/default.nix index c1c3ea1a..5fd44a27 100644 --- a/home/christoph/nixinator/default.nix +++ b/home/christoph/nixinator/default.nix @@ -30,7 +30,17 @@ mcp = { enable = true; - servers = {}; + servers = { + svelte = { + # claude mcp add -t stdio -s [scope] svelte -- npx -y @sveltejs/mcp + args = [ + "-y" + "@sveltejs/mcp" + ]; + command = "npx"; + # type = "stdio"; + }; + }; }; };