Skip to content

Commit 73a00f4

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for TRIGGER_SECRET_KEY)
1 parent 914ac63 commit 73a00f4

1 file changed

Lines changed: 21 additions & 11 deletions

File tree

servers/dev.trigger-mcp.json

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,26 @@
66
"description": "Manage Trigger.dev background jobs and workflows. List tasks, trigger runs, monitor execution, and deploy projects to different environments.",
77
"icon": "https://avatars.githubusercontent.com/u/95297378?v=4",
88
"schema_version": "2.1",
9-
"categories": ["developer-tools", "cloud"],
10-
"tags": ["trigger", "background-jobs", "workflows", "tasks", "deployment", "automation"],
11-
9+
"categories": [
10+
"developer-tools",
11+
"cloud"
12+
],
13+
"tags": [
14+
"trigger",
15+
"background-jobs",
16+
"workflows",
17+
"tasks",
18+
"deployment",
19+
"automation"
20+
],
1221
"transport": {
1322
"type": "stdio",
1423
"command": "npx",
15-
"args": ["-y", "trigger.dev@latest", "mcp"],
24+
"args": [
25+
"-y",
26+
"trigger.dev@latest",
27+
"mcp"
28+
],
1629
"env": {
1730
"TRIGGER_SECRET_KEY": "${input:TRIGGER_SECRET_KEY}"
1831
},
@@ -22,7 +35,7 @@
2235
"id": "TRIGGER_SECRET_KEY",
2336
"label": "Trigger.dev Secret Key",
2437
"description": "Secret key for your Trigger.dev project. Optional if using CLI login instead.",
25-
"type": "password",
38+
"type": "text",
2639
"required": false,
2740
"secret": true,
2841
"placeholder": "tr_dev_xxxxxxxxxxxxxxxx",
@@ -35,26 +48,23 @@
3548
]
3649
}
3750
},
38-
3951
"auth": {
4052
"type": "optional_api_key",
4153
"instructions": "Authenticate via Trigger.dev CLI login or provide a TRIGGER_SECRET_KEY. The search_docs tool works without authentication."
4254
},
43-
4455
"contributor": {
4556
"name": "Trigger.dev",
4657
"github": "triggerdotdev",
4758
"url": "https://trigger.dev"
4859
},
49-
5060
"links": {
5161
"repository": "https://github.com/triggerdotdev/trigger.dev",
5262
"homepage": "https://trigger.dev",
5363
"documentation": "https://trigger.dev/docs/mcp-introduction"
5464
},
55-
56-
"platforms": ["all"],
57-
65+
"platforms": [
66+
"all"
67+
],
5868
"capabilities": {
5969
"tools": true,
6070
"resources": false,

0 commit comments

Comments
 (0)