Skip to content
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

Edits to docs on connecting from Cursor #21240

Draft
wants to merge 1 commit into
base: production
Choose a base branch
from
Draft
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
12 changes: 11 additions & 1 deletion src/content/docs/agents/guides/test-remote-mcp-server.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,17 @@ Once authenticated, you'll be able to see your tools by clicking the tools icon

## Connect your remote MCP server to Cursor

To connect [Cursor](https://www.cursor.com/) with your remote MCP server, choose `Type`: "Command" and in the `Command` field, combine the command and args fields into one (e.g.`npx mcp-remote https://your-worker-name.your-account.workers.dev/sse`).
To connect [Cursor](https://www.cursor.com/) with your remote MCP server, add the following to your [`.cursor/mcp.json` configuration](https://docs.cursor.com/context/model-context-protocol):

```json
{
"mcpServers": {
"server-name": {
"command": "npx mcp-remote https://my-worker.account.workers.dev/sse"
}
}
}
```

## Connect your remote MCP server to Windsurf

Expand Down