{ "name": "create_project_in_org", "description": "Create a new project in an organization. Only do this if the user wants to add Trigger.dev to an existing project. If there is already a trigger.config.ts file present, then you should not create a new 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." }, "name": { "type": "string", "description": "The name of the project to create." } }, "required": [ "orgParam", "name" ], "additionalProperties": false, "$schema": "http://json-schema.org/draft-07/schema#" } }