Railway MCP Server
Allows creating services in Railway projects from Docker images.
Allows creating services in Railway projects from GitHub repositories.
Provides full access to Railway.app infrastructure, enabling management of projects, services, deployments, environments, variables, domains, logs, and volumes through natural conversation.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Railway MCP Serverlist my projects"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Railway MCP Server
A Model Context Protocol (MCP) server that gives Claude (and other MCP-compatible AI tools) full access to your Railway.app infrastructure. Deploy, manage services, check logs, configure environment variables — all through natural conversation.
Supports multiple workspaces — use one token per workspace and the server merges results across all of them.
Quick Start
1. Get Railway API Tokens
Go to railway.com/account/tokens and create a workspace-scoped token for each workspace you want to access. Tokens scoped to "No workspace" can only see account-level info, not projects.
2. Install & Build
cd railway-mcp-server
npm install
npm run build3. Configure in Claude Desktop
Open your Claude Desktop config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
Multiple workspaces (recommended)
Use named env vars — one per workspace:
{
"mcpServers": {
"railway": {
"command": "node",
"args": ["/FULL/PATH/TO/railway-mcp-server/build/index.js"],
"env": {
"RAILWAY_TOKEN_MYCOMPANY": "token-scoped-to-company-workspace",
"RAILWAY_TOKEN_PERSONAL": "token-scoped-to-personal-workspace"
}
}
}
}The label after RAILWAY_TOKEN_ becomes the workspace name in results (e.g. mycompany, personal).
Single workspace
If you only need one workspace, you can use the simpler format:
{
"mcpServers": {
"railway": {
"command": "node",
"args": ["/FULL/PATH/TO/railway-mcp-server/build/index.js"],
"env": {
"RAILWAY_API_TOKEN": "your-token-here"
}
}
}
}All token formats supported
Env var | Behavior |
| Named tokens — one per workspace (recommended) |
| Comma-separated list of tokens |
| Single token (backwards compatible) |
4. Restart Claude Desktop
The Railway tools will appear automatically.
Related MCP server: Railway MCP Server
Available Tools (30 total)
Teams
Tool | Description |
| List all teams/organizations you belong to |
Projects
Tool | Description |
| List ALL projects across all workspaces |
| List only your personal projects |
| List projects for a specific team |
| Get project details (services, environments) |
| Create a new project |
| Delete a project |
Services
Tool | Description |
| List services in a project |
| Create from GitHub repo or Docker image |
| Remove a service |
Deployments
Tool | Description |
| List deployments for a service |
| Get deployment status and details |
| Trigger a new deployment |
| Redeploy the latest version |
| Restart a running deployment |
| Cancel/remove a deployment |
Environments
Tool | Description |
| List environments (production, staging, etc.) |
| Create a new environment |
| Remove an environment |
Variables
Tool | Description |
| Read environment variables |
| Set one or more variables (upsert) |
| Delete a variable |
Domains
Tool | Description |
| Generate a *.up.railway.app domain |
| Attach your own domain |
| Remove the Railway domain |
Logs
Tool | Description |
| Runtime/application logs |
| Build output logs |
Volumes
Tool | Description |
| Create persistent storage for a service |
Advanced
Tool | Description |
| Run any GraphQL query/mutation directly |
| Discover all available API operations |
How Multi-Workspace Works
When you configure multiple tokens, the server handles routing automatically:
Listing projects: Queries all workspaces in parallel and merges results, labeled by workspace name.
ID-based lookups (get project, deploy, check logs, etc.): Tries each token until one succeeds. Since Railway IDs are globally unique, it finds the right workspace automatically.
Create operations: Uses the first configured token by default.
Example Usage (in Claude)
"List my Railway projects"
"Deploy my-app service to production"
"Show me the logs for the latest deployment of api-server"
"Set DATABASE_URL on my backend service in staging"
"Create a new project called 'my-saas' with a Postgres database"
Development
npm run dev # Watch mode — recompiles on changes
npm run build # One-time build
npm start # Run the serverHow It Works
This server communicates with Railway's public GraphQL API at backboard.railway.com/graphql/v2. It runs locally on your machine via STDIO transport, so your API tokens never leave your computer.
The raw_graphql tool is an escape hatch — if Railway adds new API operations before this server is updated, you (or Claude) can still access them by writing the GraphQL directly.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wardspan/railway-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server