File size: 855 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 | {
"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#"
}
} |