Skip to content

Commit c80daa1

Browse files
authored
feat: add Trigger.dev MCP server definition (#79)
* 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 * fix: update server definition (input type 'password' -> 'text' for TRIGGER_SECRET_KEY) * fix: rename server files with transport suffix - dev.trigger-mcp.json -> dev.trigger-mcp-npx.json (id: dev.trigger-mcp-npx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 71a4851 commit c80daa1

1 file changed

Lines changed: 74 additions & 0 deletions

File tree

servers/dev.trigger-mcp-npx.json

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "dev.trigger-mcp-npx",
4+
"name": "Trigger.dev (npx)",
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": [
10+
"developer-tools",
11+
"cloud"
12+
],
13+
"tags": [
14+
"trigger",
15+
"background-jobs",
16+
"workflows",
17+
"tasks",
18+
"deployment",
19+
"automation"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"trigger.dev@latest",
27+
"mcp"
28+
],
29+
"env": {
30+
"TRIGGER_SECRET_KEY": "${input:TRIGGER_SECRET_KEY}"
31+
},
32+
"metadata": {
33+
"inputs": [
34+
{
35+
"id": "TRIGGER_SECRET_KEY",
36+
"label": "Trigger.dev Secret Key",
37+
"description": "Secret key for your Trigger.dev project. Optional if using CLI login instead.",
38+
"type": "text",
39+
"required": false,
40+
"secret": true,
41+
"placeholder": "tr_dev_xxxxxxxxxxxxxxxx",
42+
"obtain": {
43+
"url": "https://cloud.trigger.dev/",
44+
"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_)",
45+
"button_label": "Get Secret Key"
46+
}
47+
}
48+
]
49+
}
50+
},
51+
"auth": {
52+
"type": "optional_api_key",
53+
"instructions": "Authenticate via Trigger.dev CLI login or provide a TRIGGER_SECRET_KEY. The search_docs tool works without authentication."
54+
},
55+
"contributor": {
56+
"name": "Trigger.dev",
57+
"github": "triggerdotdev",
58+
"url": "https://trigger.dev"
59+
},
60+
"links": {
61+
"repository": "https://github.com/triggerdotdev/trigger.dev",
62+
"homepage": "https://trigger.dev",
63+
"documentation": "https://trigger.dev/docs/mcp-introduction"
64+
},
65+
"platforms": [
66+
"all"
67+
],
68+
"capabilities": {
69+
"tools": true,
70+
"resources": false,
71+
"prompts": false,
72+
"read_only_mode": false
73+
}
74+
}

0 commit comments

Comments
 (0)