project_create
Create new Railway projects for applications, development environments, or project spaces. Start by defining a project name and optional team ID. Use with follow-up tools to deploy services or databases.
Instructions
[API] Create a new Railway project
⚡️ Best for: ✓ Starting new applications ✓ Setting up development environments ✓ Creating project spaces
⚠️ Not for: × Duplicating existing projects
→ Next steps: service_create_from_repo, service_create_from_image, database_deploy
→ Related: project_delete, project_update
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| name | Yes | Name for the new project | |
| teamId | No | Optional team ID to create the project under | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "name": {
      "description": "Name for the new project",
      "type": "string"
    },
    "teamId": {
      "description": "Optional team ID to create the project under",
      "type": "string"
    }
  },
  "required": [
    "name"
  ],
  "type": "object"
}