MCP Setup
The All Aboard MCP server is available at:
https://mcp.allaboard.eu/mcphttps://mcp.allaboard.eu/mcpAuthentication
The MCP server uses OAuth 2.1 to authenticate users. You do not need an API key. Authentication is handled automatically as part of connecting your MCP client. The MCP client will then use your credentials to make tool calls on your behalf.
TIP
If a tool call returns an authentication error, reconnect your MCP client to https://mcp.allaboard.eu/mcp to go through the OAuth flow again.
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/mcpclaude mcp add -t http -s user allaboard https://mcp.allaboard.eu/mcpYou can replace user with project or local depending on your preferred scope.
Claude Desktop
- Open Settings → Connectors
- Click Add Custom Connector
- Enter
allaboardas the name - Under Remote MCP server URL, enter
https://mcp.allaboard.eu/mcp - Click Add
OpenCode
Run the following and follow the prompts, selecting Remote when asked for the server type:
sh
opencode mcp addopencode 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/mcpVS Code
- Open the command palette
- Select MCP: Add Server...
- Select HTTP (HTTP or Server-Sent-Events)
- Enter
https://mcp.allaboard.eu/mcpand pressEnter - Enter
allaboardas the server name - Choose Global or Workspace
Cursor
- Open the command palette
- Select View: Open MCP Settings
- Click Add custom MCP
- 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/mcpgemini mcp add -t http -s user allaboard https://mcp.allaboard.eu/mcpThe scope must be user or project.
GitHub Coding Agent
- Open your repository on GitHub
- Go to Settings → Copilot → Coding agent
- 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": ["*"]
}
}
}- 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.