Skip to content

Commit 6f88201

Browse files
committed
Add Trigger.dev MCP server definition
Official Trigger.dev MCP server for managing background jobs and workflows. List tasks, trigger runs, monitor execution. Uses trigger.dev CLI with stdio transport. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 0217546 commit 6f88201

1 file changed

Lines changed: 64 additions & 0 deletions

File tree

servers/dev.trigger-mcp.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "dev.trigger-mcp",
4+
"name": "Trigger.dev",
5+
"alias": "trigger",
6+
"description": "Manage Trigger.dev background jobs and workflows. List tasks, trigger runs, monitor execution, and deploy projects to different environments.",
7+
"icon": "https://avatars.githubusercontent.com/u/95297378?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["developer-tools", "cloud"],
10+
"tags": ["trigger", "background-jobs", "workflows", "tasks", "deployment", "automation"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "trigger.dev@latest", "mcp"],
16+
"env": {
17+
"TRIGGER_SECRET_KEY": "${input:TRIGGER_SECRET_KEY}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "TRIGGER_SECRET_KEY",
23+
"label": "Trigger.dev Secret Key",
24+
"description": "Secret key for your Trigger.dev project. Optional if using CLI login instead.",
25+
"type": "password",
26+
"required": false,
27+
"secret": true,
28+
"placeholder": "tr_dev_xxxxxxxxxxxxxxxx",
29+
"obtain": {
30+
"url": "https://cloud.trigger.dev/",
31+
"instructions": "1. Log in to cloud.trigger.dev\n2. Open your project\n3. Go to the API keys page\n4. Copy your secret key (starts with tr_dev_ or tr_prod_)",
32+
"button_label": "Get Secret Key"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "optional_api_key",
41+
"instructions": "Authenticate via Trigger.dev CLI login or provide a TRIGGER_SECRET_KEY. The search_docs tool works without authentication."
42+
},
43+
44+
"contributor": {
45+
"name": "Trigger.dev",
46+
"github": "triggerdotdev",
47+
"url": "https://trigger.dev"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/triggerdotdev/trigger.dev",
52+
"homepage": "https://trigger.dev",
53+
"documentation": "https://trigger.dev/docs/mcp-introduction"
54+
},
55+
56+
"platforms": ["all"],
57+
58+
"capabilities": {
59+
"tools": true,
60+
"resources": false,
61+
"prompts": false,
62+
"read_only_mode": false
63+
}
64+
}

0 commit comments

Comments
 (0)