annator / mcps /trigger /tools /deploy.json
techprotrade's picture
Add mcps directory (part 2)
cf3884b verified
Raw
History Blame Contribute Delete
1.89 kB
{
"name": "deploy",
"description": "Deploy a project. Use this tool when you need to deploy a project. This will trigger a deployment for the project. This is a long running operation and including a progress token will allow you to display the progress to the user.",
"inputSchema": {
"type": "object",
"properties": {
"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."
},
"configPath": {
"type": "string",
"description": "The path to the trigger.config.ts file. Only used when the trigger.config.ts file is not at the root dir (like in a monorepo setup). If not provided, we will try to find the config file in the current working directory"
},
"branch": {
"type": "string",
"description": "The branch to get tasks for, only used for preview environments"
},
"environment": {
"type": "string",
"enum": [
"staging",
"prod",
"preview"
],
"description": "The environment to trigger the task in",
"default": "prod"
},
"skipPromotion": {
"type": "boolean",
"description": "Skip promoting the deployment to the current deployment for the environment"
},
"skipSyncEnvVars": {
"type": "boolean",
"description": "Skip syncing environment variables when using the syncEnvVars extension"
},
"skipUpdateCheck": {
"type": "boolean",
"description": "Skip checking for @trigger.dev package updates"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}
}