Setup

The All Aboard MCP server is available at:

https://mcp.allaboard.eu/mcp
https://mcp.allaboard.eu/mcp

Here is how to connect it in common MCP clients:

Claude Code

sh
claude mcp add -t http -s user allaboard https://mcp.allaboard.eu/mcp
claude mcp add -t http -s user allaboard https://mcp.allaboard.eu/mcp

You can replace user with project or local depending on your preferred scope.

Claude Desktop

  1. Open SettingsConnectors
  2. Click Add Custom Connector
  3. Enter allaboard as the name
  4. Under Remote MCP server URL, enter https://mcp.allaboard.eu/mcp
  5. Click Add

OpenCode

Run the following and follow the prompts, selecting Remote when asked for the server type:

sh
opencode mcp add
opencode mcp add
┌  Add MCP server

◇  Enter MCP server name
│  allaboard

◇  Select MCP server type
│  Remote

◇  Enter MCP server URL
│  https://mcp.allaboard.eu/mcp
┌  Add MCP server

◇  Enter MCP server name
│  allaboard

◇  Select MCP server type
│  Remote

◇  Enter MCP server URL
│  https://mcp.allaboard.eu/mcp

VS Code

  1. Open the command palette
  2. Select MCP: Add Server...
  3. Select HTTP (HTTP or Server-Sent-Events)
  4. Enter https://mcp.allaboard.eu/mcp and press Enter
  5. Enter allaboard as the server name
  6. Choose Global or Workspace

Cursor

  1. Open the command palette
  2. Select View: Open MCP Settings
  3. Click Add custom MCP
  4. Add the following to the opened config file:
json
{
  "mcpServers": {
    "allaboard": {
      "url": "https://mcp.allaboard.eu/mcp"
    }
  }
}
{
  "mcpServers": {
    "allaboard": {
      "url": "https://mcp.allaboard.eu/mcp"
    }
  }
}

Codex CLI

Add the following to your ~/.codex/config.toml:

toml
experimental_use_rmcp_client = true

[mcp_servers.allaboard]
url = "https://mcp.allaboard.eu/mcp"
experimental_use_rmcp_client = true

[mcp_servers.allaboard]
url = "https://mcp.allaboard.eu/mcp"

Copilot CLI

Run /mcp add interactively, or create/edit ~/.copilot/mcp-config.json:

json
{
  "mcpServers": {
    "allaboard": {
      "url": "https://mcp.allaboard.eu/mcp"
    }
  }
}
{
  "mcpServers": {
    "allaboard": {
      "url": "https://mcp.allaboard.eu/mcp"
    }
  }
}

Gemini CLI

sh
gemini mcp add -t http -s user allaboard https://mcp.allaboard.eu/mcp
gemini mcp add -t http -s user allaboard https://mcp.allaboard.eu/mcp

The scope must be user or project.

GitHub Coding Agent

  1. Open your repository on GitHub
  2. Go to SettingsCopilotCoding agent
  3. Edit the MCP configuration:
json
{
  "mcpServers": {
    "allaboard": {
      "type": "http",
      "url": "https://mcp.allaboard.eu/mcp",
      "tools": ["*"]
    }
  }
}
{
  "mcpServers": {
    "allaboard": {
      "type": "http",
      "url": "https://mcp.allaboard.eu/mcp",
      "tools": ["*"]
    }
  }
}
  1. Click Save MCP configuration

Other clients

Refer to your client's documentation for remote MCP servers and use https://mcp.allaboard.eu/mcp as the URL.