configure_api_token
Set or update the Railway API token for authentication in railway-mcp server. Use this tool during initial setup or token changes to enable secure API access.
Instructions
[UTILITY] Configure the Railway API token for authentication (only needed if not set in environment variables)
⚡️ Best for: ✓ Initial setup ✓ Token updates ✓ Authentication configuration
⚠️ Not for: × Project configuration × Service settings × Environment variables
→ Next steps: project_list, service_list
→ Related: project_create
Input Schema
Name | Required | Description | Default |
---|---|---|---|
token | Yes | Railway API token (create one at https://railway.app/account/tokens) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"token": {
"description": "Railway API token (create one at https://railway.app/account/tokens)",
"type": "string"
}
},
"required": [
"token"
],
"type": "object"
}