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