From 5a5a94fc0d0113f52afa88bb7293e575e27b7805 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 13:25:39 +0000 Subject: [PATCH 1/3] Add Railway MCP server definition Official Railway MCP server for managing projects, services, and deployments. Uses @railway/mcp-server npm package with stdio transport. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/app.railway-mcp.json | 64 ++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 servers/app.railway-mcp.json diff --git a/servers/app.railway-mcp.json b/servers/app.railway-mcp.json new file mode 100644 index 0000000..3290cac --- /dev/null +++ b/servers/app.railway-mcp.json @@ -0,0 +1,64 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "app.railway-mcp", + "name": "Railway", + "alias": "railway", + "description": "Manage Railway projects, services, and deployments. Create services, view logs, manage environment variables, and trigger deployments.", + "icon": "https://avatars.githubusercontent.com/u/66716858?v=4", + "schema_version": "2.1", + "categories": ["cloud", "developer-tools"], + "tags": ["railway", "deployment", "hosting", "infrastructure", "paas"], + + "transport": { + "type": "stdio", + "command": "npx", + "args": ["-y", "@railway/mcp-server"], + "env": { + "RAILWAY_API_TOKEN": "${input:RAILWAY_API_TOKEN}" + }, + "metadata": { + "inputs": [ + { + "id": "RAILWAY_API_TOKEN", + "label": "Railway API Token", + "description": "API token for Railway. Can also authenticate via Railway CLI.", + "type": "password", + "required": false, + "secret": true, + "placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", + "obtain": { + "url": "https://railway.com/account/tokens", + "instructions": "1. Go to railway.com/account/tokens\n2. Click 'Create Token'\n3. Name your token and click 'Create'\n4. Copy the token", + "button_label": "Create Token" + } + } + ] + } + }, + + "auth": { + "type": "optional_api_key", + "instructions": "Provide a Railway API token from https://railway.com/account/tokens or authenticate via Railway CLI." + }, + + "contributor": { + "name": "Railway", + "github": "railwayapp", + "url": "https://railway.com" + }, + + "links": { + "repository": "https://github.com/railwayapp/railway-mcp-server", + "homepage": "https://railway.com", + "documentation": "https://docs.railway.com/reference/mcp-server" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 1c9157933a6333364a344f61726ee13db9c02945 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:10:28 +0800 Subject: [PATCH 2/3] fix: update server definition (input type 'password' -> 'text' for RAILWAY_API_TOKEN) --- servers/app.railway-mcp.json | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/servers/app.railway-mcp.json b/servers/app.railway-mcp.json index 3290cac..ae9ff69 100644 --- a/servers/app.railway-mcp.json +++ b/servers/app.railway-mcp.json @@ -6,13 +6,24 @@ "description": "Manage Railway projects, services, and deployments. Create services, view logs, manage environment variables, and trigger deployments.", "icon": "https://avatars.githubusercontent.com/u/66716858?v=4", "schema_version": "2.1", - "categories": ["cloud", "developer-tools"], - "tags": ["railway", "deployment", "hosting", "infrastructure", "paas"], - + "categories": [ + "cloud", + "developer-tools" + ], + "tags": [ + "railway", + "deployment", + "hosting", + "infrastructure", + "paas" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "@railway/mcp-server"], + "args": [ + "-y", + "@railway/mcp-server" + ], "env": { "RAILWAY_API_TOKEN": "${input:RAILWAY_API_TOKEN}" }, @@ -22,7 +33,7 @@ "id": "RAILWAY_API_TOKEN", "label": "Railway API Token", "description": "API token for Railway. Can also authenticate via Railway CLI.", - "type": "password", + "type": "text", "required": false, "secret": true, "placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", @@ -35,26 +46,23 @@ ] } }, - "auth": { "type": "optional_api_key", "instructions": "Provide a Railway API token from https://railway.com/account/tokens or authenticate via Railway CLI." }, - "contributor": { "name": "Railway", "github": "railwayapp", "url": "https://railway.com" }, - "links": { "repository": "https://github.com/railwayapp/railway-mcp-server", "homepage": "https://railway.com", "documentation": "https://docs.railway.com/reference/mcp-server" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From f03d12201d3b5bd372cf964db91018e5918504c4 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:45:34 +0800 Subject: [PATCH 3/3] fix: rename server files with transport suffix - app.railway-mcp.json -> app.railway-mcp-npx.json (id: app.railway-mcp-npx) Signed-off-by: Mohammod Al Amin Ashik --- servers/{app.railway-mcp.json => app.railway-mcp-npx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{app.railway-mcp.json => app.railway-mcp-npx.json} (97%) diff --git a/servers/app.railway-mcp.json b/servers/app.railway-mcp-npx.json similarity index 97% rename from servers/app.railway-mcp.json rename to servers/app.railway-mcp-npx.json index ae9ff69..bb11e6c 100644 --- a/servers/app.railway-mcp.json +++ b/servers/app.railway-mcp-npx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "app.railway-mcp", - "name": "Railway", + "id": "app.railway-mcp-npx", + "name": "Railway (npx)", "alias": "railway", "description": "Manage Railway projects, services, and deployments. Create services, view logs, manage environment variables, and trigger deployments.", "icon": "https://avatars.githubusercontent.com/u/66716858?v=4",