Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions documentation/docs/20-setup/30-remote-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,23 @@ It will open a file with your MCP servers where you can add the following config

- Click _Save MCP configuration_

## AntiGravity

- Open Toggle Agent → ⋯ → MCP Servers
- Click **View raw config** and update `mcp_config.json`:
```json
{
"mcpServers": {
"svelte": {
"command": "npx",
"args": ["-y", "@sveltejs/mcp"]
}
}
}
```
Comment on lines +124 to +133
Copy link

Copilot AI Nov 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This configuration uses the local setup pattern (with command and args using npx) instead of the remote setup pattern. Since this is the remote setup documentation, the configuration should use the remote URL pattern instead.

Based on other sections in this file (e.g., Cursor, GitHub Coding Agent), the AntiGravity configuration should be:

{
  "mcpServers": {
    "svelte": {
      "url": "https://mcp.svelte.dev/mcp"
    }
  }
}

The current configuration shown would be appropriate for the local-setup.md file instead.

Copilot uses AI. Check for mistakes.
- Save the file
- Return to MCP Servers and click **Refresh**

## Other clients

If we didn't include the MCP client you are using, refer to their documentation for `remote` servers and use `https://mcp.svelte.dev/mcp` as the URL.
Loading