- Cursor
- Claude Code
- Visual Studio Code
- Windsurf
- Zed
Click here to install or manually update your mcp.json file with
{
"mcpServers": {
"Multiplayer": {
"url": "https://api.multiplayer.app/v0/api/public/mcp"
}
}
}
Add remote Multiplayer MCP server to Claude CodeVerify that server was addedWithin Claude Code, use the /mcp command to manage authentication:Select Multiplayer Mcp server to start authorization process
Detailed instructions for adding mcp server can be found at Anthropic's documentation
claude mcp add --transport http Multiplayer -s project https://api.multiplayer.app/v0/api/public/mcp
claude list
/mcp
Detailed instructions for adding mcp server can be found at Anthropic's documentation
To configure an MCP server for a specific workspace, you can create a `.vscode/mcp.json` file in your workspace folder. This allows you to share the server configuration with project team members.
{
"mcpServers": {
"Multiplayer": {
"url": "https://api.multiplayer.app/v0/api/public/mcp"
}
}
}
- Enter the name Multiplayer and hit enter.
- Activate the server using MCP: List Servers and selecting Multiplayer, and selecting Start Server.
Settings → Windsurf Settings → Cascade → Manage Mcp → View Raw config
Add following to the config:
Add following to the config:
{
"mcpServers": {
"Multiplayer": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://api.multiplayer.app/v0/api/public/mcp"
]
}
}
}
- Press CMD, to open Zed settings.
- Add the following:
{
"context_servers": {
"multiplayer": {
"command": {
"path": "npx",
"args": [
"-y",
"mcp-remote",
"https://api.multiplayer.app/v0/api/public/mcp"
],
"env": {}
},
"settings": {}
}
}
}