File size: 1,338 Bytes
cf3884b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | {
"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#"
}
} |