- 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
- CTRL/CMDP and search for MCP: Add Server.
- Select Command (stdio)
- Enter the following configuration, and hit enter.
npx mcp-remote 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.
- CTRL/CMD + , to open Windsurf settings.
- Under Scroll to Cascade → MCP servers.
- Select Add Server → Add custom server
- Add the following:
{
"mcpServers": {
"multiplayer": {
"command": "npx -y mcp-remote https://api.multiplayer.app/v0/api/public/mcp",
"env": {}
}
}
}
- 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": {}
}
}
}