-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathdev.trigger-mcp-npx.json
More file actions
74 lines (74 loc) · 2.08 KB
/
Copy pathdev.trigger-mcp-npx.json
File metadata and controls
74 lines (74 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"$schema": "../schemas/server-definition.schema.json",
"id": "dev.trigger-mcp-npx",
"name": "Trigger.dev (npx)",
"alias": "trigger",
"description": "Manage Trigger.dev background jobs and workflows. List tasks, trigger runs, monitor execution, and deploy projects to different environments.",
"icon": "https://avatars.githubusercontent.com/u/95297378?v=4",
"schema_version": "2.1",
"categories": [
"developer-tools",
"cloud"
],
"tags": [
"trigger",
"background-jobs",
"workflows",
"tasks",
"deployment",
"automation"
],
"transport": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"trigger.dev@latest",
"mcp"
],
"env": {
"TRIGGER_SECRET_KEY": "${input:TRIGGER_SECRET_KEY}"
},
"metadata": {
"inputs": [
{
"id": "TRIGGER_SECRET_KEY",
"label": "Trigger.dev Secret Key",
"description": "Secret key for your Trigger.dev project. Optional if using CLI login instead.",
"type": "text",
"required": false,
"secret": true,
"placeholder": "tr_dev_xxxxxxxxxxxxxxxx",
"obtain": {
"url": "https://cloud.trigger.dev/",
"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_)",
"button_label": "Get Secret Key"
}
}
]
}
},
"auth": {
"type": "optional_api_key",
"instructions": "Authenticate via Trigger.dev CLI login or provide a TRIGGER_SECRET_KEY. The search_docs tool works without authentication."
},
"contributor": {
"name": "Trigger.dev",
"github": "triggerdotdev",
"url": "https://trigger.dev"
},
"links": {
"repository": "https://github.com/triggerdotdev/trigger.dev",
"homepage": "https://trigger.dev",
"documentation": "https://trigger.dev/docs/mcp-introduction"
},
"platforms": [
"all"
],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": false
}
}