loading…
Search for a command to run...
loading…
Enables comprehensive management of Railway infrastructure, including projects, services, variables, and deployments, directly through the Railway GraphQL API.
Enables comprehensive management of Railway infrastructure, including projects, services, variables, and deployments, directly through the Railway GraphQL API. It is designed to work as a remote service over HTTP, allowing seamless integration with cloud-based MCP clients like claude.ai.
A Model Context Protocol server that lets you manage Railway infrastructure from claude.ai (or any MCP client). Built with FastMCP and deployed on Railway itself.
17 tools across 5 categories:
Railway has an official MCP server but it wraps the CLI and only works locally (stdio transport). This server hits the Railway GraphQL API directly over HTTP, so it can be deployed as a remote service and connected to claude.ai as a connector.
Go to railway.com/account/tokens and create an account-level token.
RAILWAY_API_TOKEN = your tokenPORT = 8000MCP_TRANSPORT = streamable-httpAdd the MCP connector URL: https://{your-domain}/mcp
# Clone and install
git clone https://github.com/Travis-Gilbert/railway-mcp.git
cd railway-mcp
pip install -e .
# Set up env
cp .env.example .env
# Edit .env with your Railway API token
# Run locally
python -m railway_mcp
# Or with stdio transport
MCP_TRANSPORT=stdio python -m railway_mcp
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"railway-mcp-server": {
"command": "npx",
"args": []
}
}
}