Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

@Crisog/Railway Server

БесплатноНе проверен

Unofficial MCP server for Railway that enables managing Railway infrastructure through natural language, including projects, services, deployments, environments

GitHubEmbed

Описание

Unofficial MCP server for Railway that enables managing Railway infrastructure through natural language, including projects, services, deployments, environments, variables, templates, domains, volumes, observability, integrations, networking, and workflows.

README

⚠️ This is an unofficial MCP server for Railway

This project is not affiliated with, officially maintained by, or endorsed by Railway. It is a community-built integration.

An unofficial Model Context Protocol (MCP) server for exposing Railway resources and automation tools to MCP-compatible clients.

Quick Start

Install MCP Server

This will add the following configuration to your Cursor settings:

{
  "mcpServers": {
    "railway-mcp-server": {
      "command": "npx",
      "args": ["-y", "@crisog/railway-mcp-server"]
    }
  }
}

Authentication

Getting Your Railway API Token

  1. Go to Railway Settings
  2. Create a new API token:
    • Account Token: Full access to all workspaces and projects
    • Workspace Token: Access to a specific workspace and its projects
    • Project Token: Access to a specific project environment
  3. Copy the token (you'll only see it once!)
  • Use the minimum required scope - Prefer Workspace or Project tokens over Account tokens when possible

Configuring the Token

Add your Railway API token to the MCP server configuration in ~/.cursor/mcp.json:

{
  "mcpServers": {
    "railway-mcp-server": {
      "command": "npx",
      "args": ["-y", "@crisog/railway-mcp-server"],
      "env": {
        "RAILWAY_API_TOKEN": "<YOUR_RAILWAY_API_TOKEN>"
      }
    }
  }
}

Important: Replace <YOUR_RAILWAY_API_TOKEN> with your actual token. After updating the configuration, restart Cursor for the changes to take effect.

Token Types & Scope

Railway supports three types of API tokens, each with different access levels:

  • Account Token: Global access to everything, multiple workspaces
  • Workspace Token: Single workspace access, multiple projects
  • Project Token: Scoped to specific environment within a project

Token Scope Matrix

Tool Category Account Token Workspace Token Project Token
Projects ✅ Full Access ✅ Full Access ❌ Not Authorized
Services ✅ Full Access ✅ Full Access ❌ Not Authorized
Environments ✅ Full Access ✅ Full Access ❌ Not Authorized
Deployments ✅ Full Access ✅ Full Access ❌ Not Authorized
Variables ✅ Full Access ✅ Full Access ❌ Not Authorized
Domains ✅ Full Access ✅ Full Access ❌ Not Authorized
Templates ✅ Full Access ✅ Full Access ✅ Full Access
Networking ✅ Full Access ✅ Full Access ❌ Not Authorized
Observability ✅ Full Access ✅ Full Access ❌ Not Authorized
Workflows ⚠️ Limited ⚠️ Limited ❌ Not Authorized
GitHub Integrations ✅ Full Access ❌ Not Authorized ❌ Not Authorized
Volumes ✅ Full Access ✅ Full Access ✅ Backups Only

Legend:

  • ✅ Full Access - All operations work
  • ⚠️ Limited - Some operations may be restricted
  • ❌ Not Authorized - Token scope doesn't allow access

Key Differences:

  • Account Token: Required for GitHub integrations. All other operations work identically to Workspace Token.
  • Workspace Token: Best for most operations. Workflow status works for template deployments but volume backup workflows return "Not Authorized". All other operations work correctly.
  • Project Token: Environment-scoped access. Only templates work fully. Volume backup operations (create, list) work with valid volume instance IDs in the token's scoped environment. Volume creation is not authorized. Deployment and observability operations return "Not Authorized" even for deployments in the token's scoped environment.

Available Tools

This MCP server provides 51 tools for managing Railway infrastructure, organized into the following categories:

Projects

  • railway_projects_list - List all projects for a user or workspace
  • railway_project_create - Create a new Railway project
  • railway_project_get - Get project details
  • railway_workspaces_list - List all workspaces the user is a member of

Services

  • railway_services_list - List all services in a project
  • railway_service_get - Get service details
  • railway_service_create - Create a new service in a project
  • railway_service_update - Update service metadata (name, icon)
  • railway_service_deploy_latest - Deploy service using latest commit or specific commit
  • railway_service_instance_build_command_update - Update the build command for a service instance (advanced; can change how your service builds)
  • railway_service_instance_start_command_update - Update the start command for a service instance (advanced; can change how your service runs)
  • railway_service_instance_predeploy_commands_update - Update pre-deploy commands for a service instance (advanced; runs before each deployment)

Deployments

  • railway_deployment_list - List deployments with filtering options
  • railway_deployment_get - Get deployment details
  • railway_deployment_logs - Fetch deployment logs
  • railway_deployment_events - Fetch deployment events
  • railway_deployment_redeploy - Redeploy a previous deployment
  • railway_deployment_restart - Restart a deployment
  • railway_deployment_stop - Stop a running deployment
  • railway_deployment_cancel - Cancel a pending/in-progress deployment
  • railway_deployment_rollback - Rollback to a previous deployment

Environments

  • railway_environments_list - List all environments for a project
  • railway_environment_create - Create a new environment (optionally clone from existing)
  • railway_environment_rename - Rename an environment
  • railway_environment_logs - Fetch environment logs
  • railway_environment_get_by_name - Get an environment by its name (useful when environments_list returns empty results)

Variables

  • railway_variable_upsert - Create or update a variable (project or service scope)
  • railway_variables_collection_upsert - Bulk create/update multiple variables
  • railway_variables_render_for_deployment - Resolve concrete variables for a service deployment

Templates

  • railway_templates_list - List available templates with pagination and filtering
  • railway_template_get - Get template details by code or GitHub owner/repo
  • railway_template_deploy - Deploy a template into a project or workspace

Domains

  • railway_domain_generate - Generate a railway.app domain for a service
  • railway_domains_list - List all domains for a service in an environment
  • railway_custom_domain_create - Add a custom domain to a service
  • railway_custom_domain_available - Check if a custom domain is available

Volumes

  • railway_volume_create - Create a new volume for persistent storage
  • railway_volume_instances_list - List all volume instances for an environment
  • railway_volume_instance_backup_create - Create a volume backup
  • railway_volume_instance_backup_list - List all backups for a volume
  • railway_volume_instance_backup_restore - Restore a volume instance from a backup

Observability

  • railway_observability_http_logs - Get HTTP request logs for a deployment
  • railway_observability_build_logs - Get build logs for a deployment
  • railway_observability_events - Get system events for a project

Integrations

  • railway_github_repos_list - List accessible GitHub repositories
  • railway_github_branches_list - List branches for a GitHub repository
  • railway_github_repo_deploy - Deploy a GitHub repository to Railway

Networking

  • railway_private_network_create_or_get - Create or retrieve a private network
  • railway_private_networks_list - List all private networks for an environment
  • railway_tcp_proxies_list - List TCP proxies for a service

Workflows

  • railway_workflow_status - Check status of asynchronous Railway workflows

from github.com/crisog/railway-mcp-server

Установка @Crisog/Railway Server

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/crisog/railway-mcp-server

FAQ

@Crisog/Railway Server MCP бесплатный?

Да, @Crisog/Railway Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для @Crisog/Railway Server?

Нет, @Crisog/Railway Server работает без API-ключей и переменных окружения.

@Crisog/Railway Server — hosted или self-hosted?

Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.

Как установить @Crisog/Railway Server в Claude Desktop, Claude Code или Cursor?

Открой @Crisog/Railway Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare @Crisog/Railway Server with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории development