-
-
Notifications
You must be signed in to change notification settings - Fork 19
Add AntiGravity configuration steps to remote setup #116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Added instructions for configuring AntiGravity in MCP.
|
|
@UltimateStarCoder is attempting to deploy a commit to the Svelte Team on Vercel. A member of the Team first needs to authorize it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR adds configuration instructions for the AntiGravity MCP client to the remote setup documentation. However, the configuration provided uses the local setup pattern (with command and args using npx) rather than the remote setup pattern (with url pointing to https://mcp.svelte.dev/mcp), which is inconsistent with all other client configurations in this file and incorrect for a remote setup document.
Key Changes
- Adds a new "AntiGravity" section to the remote setup documentation with step-by-step configuration instructions
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| ```json | ||
| { | ||
| "mcpServers": { | ||
| "svelte": { | ||
| "command": "npx", | ||
| "args": ["-y", "@sveltejs/mcp"] | ||
| } | ||
| } | ||
| } | ||
| ``` |
Copilot
AI
Nov 29, 2025
There was a problem hiding this comment.
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.
|
Oops. It should be this instead for the remote mcp connection. { |
|
Thanks...can you fix linting and the actual content? |
Added instructions for configuring AntiGravity in MCP.