Editor Setup¶
Configure RemoteJuggler for various editors and AI assistants.
VS Code / Cursor¶
MCP Extension Configuration¶
Create .vscode/mcp.json or project-level .mcp.json:
Cursor Configuration¶
Cursor uses the same MCP configuration. Add to your Cursor settings:
- Open Settings (Cmd/Ctrl + ,)
- Search for "MCP"
- Add RemoteJuggler to MCP servers
Or create ~/.cursor/mcp.json:
Windsurf¶
Windsurf supports MCP servers. Add to your Windsurf configuration:
Claude Desktop¶
For the Claude desktop application, configure MCP servers in:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"remote-juggler": {
"command": "/Users/<username>/.local/bin/remote-juggler",
"args": ["--mode=mcp"]
}
}
}
Use the full path to the binary for desktop applications.
Zed¶
Zed supports MCP through its assistant feature. Configure in settings:
{
"assistant": {
"mcp_servers": {
"remote-juggler": {
"command": "remote-juggler",
"args": ["--mode=mcp"]
}
}
}
}
JetBrains IDEs¶
Global Configuration¶
Create ~/.jetbrains/acp.json:
{
"agent_servers": {
"RemoteJuggler": {
"command": "remote-juggler",
"args": ["--mode=acp"],
"env": {},
"use_idea_mcp": false,
"use_custom_mcp": false
}
}
}
Supported IDEs¶
- IntelliJ IDEA
- PyCharm
- WebStorm
- GoLand
- CLion
- Rider
- DataGrip
- RubyMine
- PhpStorm
All JetBrains IDEs use the same ACP configuration format.
Neovim¶
For Neovim with an MCP plugin, configure in your init.lua:
require('mcp').setup({
servers = {
['remote-juggler'] = {
command = 'remote-juggler',
args = {'--mode=mcp'},
},
},
})
Emacs¶
For Emacs with an MCP package:
(use-package mcp
:config
(add-to-list 'mcp-servers
'("remote-juggler" . (:command "remote-juggler" :args ("--mode=mcp")))))
Generic MCP Client¶
Any MCP-compatible client can use RemoteJuggler:
# Spawn the server
remote-juggler --mode=mcp
# Send JSON-RPC messages via stdin
# Receive responses via stdout
Example initialization:
Verifying Integration¶
Test MCP Server¶
echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-11-25"}}' | \
remote-juggler --mode=mcp
Expected response includes server info and capabilities.
Test Tool Call¶
Should return list of available tools.
Troubleshooting¶
Server Not Found¶
Ensure RemoteJuggler is in your PATH:
If not found, use the full path in configuration:
Permission Denied¶
Make the binary executable:
No Response¶
Check server stderr for errors:
Keychain Access Denied¶
On macOS, you may need to grant Keychain access. A system prompt should appear on first token access.