| { | |
| "name": "initialize_project", | |
| "description": "Initialize Trigger.dev in your project. This will create a new project in the organization you select and add Trigger.dev to your project.", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "orgParam": { | |
| "type": "string", | |
| "description": "The organization to create the project in, can either be the organization slug or the ID. Use the list_orgs tool to get a list of organizations and ask the user to select one." | |
| }, | |
| "projectRef": { | |
| "type": "string", | |
| "description": "The trigger.dev project ref, starts with proj_. We will attempt to automatically detect the project ref if running inside a directory that includes a trigger.config.ts file, or if you pass the --project-ref option to the MCP server." | |
| }, | |
| "projectName": { | |
| "type": "string", | |
| "description": "The name of the project to create. If projectRef is not provided, we will use this name to create a new project in the organization you select." | |
| }, | |
| "cwd": { | |
| "type": "string", | |
| "description": "The current working directory of the project" | |
| } | |
| }, | |
| "required": [ | |
| "orgParam", | |
| "projectName" | |
| ], | |
| "additionalProperties": false, | |
| "$schema": "http://json-schema.org/draft-07/schema#" | |
| } | |
| } |