From 04c82875f39d68006b59e36b92f995d5a574a850 Mon Sep 17 00:00:00 2001 From: Shivam Meena Date: Tue, 7 Oct 2025 12:12:05 +0530 Subject: [PATCH 1/3] Add MCP to zed guide --- documentation/docs/20-setup/20-local-setup.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/documentation/docs/20-setup/20-local-setup.md b/documentation/docs/20-setup/20-local-setup.md index a34d703..b30e6b1 100644 --- a/documentation/docs/20-setup/20-local-setup.md +++ b/documentation/docs/20-setup/20-local-setup.md @@ -108,6 +108,25 @@ It will open a file with your MCP servers where you can add the following config } ``` +## Zed + +- Open the command palette (CMD/Ctrl + Shift + P) +- Search and select "agent:open settings" +- In settings panel look for `Model Context Protocol (MCP) Servers` +- Click on "Add Server" +- Select: "Add Custom Server" + +It will open a popup with MCP server config where you can add the following configuration: + +```json +{ + "svelte": { + "command": "npx", + "args": ["-y","@sveltejs/mcp"], + } +} +``` + ## Other clients If we didn't include the MCP client you are using, refer to their documentation for `stdio` servers and use `npx` as the command and `-y @sveltejs/mcp` as the arguments. From a63deba99d63371af4941ed2127b6b938af522ed Mon Sep 17 00:00:00 2001 From: theetherGit Date: Tue, 7 Oct 2025 15:05:36 +0530 Subject: [PATCH 2/3] chore: Lint --- documentation/docs/20-setup/20-local-setup.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/documentation/docs/20-setup/20-local-setup.md b/documentation/docs/20-setup/20-local-setup.md index b30e6b1..0c32061 100644 --- a/documentation/docs/20-setup/20-local-setup.md +++ b/documentation/docs/20-setup/20-local-setup.md @@ -120,10 +120,10 @@ It will open a popup with MCP server config where you can add the following conf ```json { - "svelte": { - "command": "npx", - "args": ["-y","@sveltejs/mcp"], - } + "svelte": { + "command": "npx", + "args": ["-y", "@sveltejs/mcp"] + } } ``` From fe393bf480021252985b645d7898247b1e5ab066 Mon Sep 17 00:00:00 2001 From: Paolo Ricciuti Date: Tue, 7 Oct 2025 11:59:21 +0200 Subject: [PATCH 3/3] docs: remove command shortcut --- documentation/docs/20-setup/20-local-setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/20-setup/20-local-setup.md b/documentation/docs/20-setup/20-local-setup.md index 0c32061..863f975 100644 --- a/documentation/docs/20-setup/20-local-setup.md +++ b/documentation/docs/20-setup/20-local-setup.md @@ -110,7 +110,7 @@ It will open a file with your MCP servers where you can add the following config ## Zed -- Open the command palette (CMD/Ctrl + Shift + P) +- Open the command palette - Search and select "agent:open settings" - In settings panel look for `Model Context Protocol (MCP) Servers` - Click on "Add Server"