Skip to content

Commit b809ce1

Browse files
committed
chore(mcp): Add our MCP server to the official MCP registry
See: https://blog.modelcontextprotocol.io/posts/2025-09-08-mcp-registry-preview/
1 parent 0f9b83d commit b809ce1

File tree

3 files changed

+39
-2
lines changed

3 files changed

+39
-2
lines changed

.changeset/beige-flies-fail.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"trigger.dev": patch
3+
---
4+
5+
Add the mcpName property to the CLI package.json to allow publishing our MCP server to the Anthropic MCP registry

packages/cli-v3/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "trigger.dev",
33
"version": "4.0.2",
4-
"description": "A Command-Line Interface for Trigger.dev (v3) projects",
4+
"description": "A Command-Line Interface for Trigger.dev projects",
55
"type": "module",
66
"license": "MIT",
77
"repository": {
@@ -12,6 +12,7 @@
1212
"publishConfig": {
1313
"access": "public"
1414
},
15+
"mcpName": "io.github.triggerdotdev/trigger.dev",
1516
"keywords": [
1617
"typescript",
1718
"trigger.dev",
@@ -154,4 +155,4 @@
154155
}
155156
}
156157
}
157-
}
158+
}

server.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
3+
"name": "io.github.triggerdotdev/trigger.dev",
4+
"description": "Official Trigger.dev MCP server to automate your Trigger.dev projects, write code, help debug runs, and get answers to questions about Trigger.dev",
5+
"status": "active",
6+
"repository": {
7+
"url": "https://github.com/triggerdotdev/trigger.dev",
8+
"source": "github",
9+
"subfolder": "packages/cli-v3"
10+
},
11+
"version": "4.0.3",
12+
"packages": [
13+
{
14+
"registry_type": "npm",
15+
"registry_base_url": "https://registry.npmjs.org",
16+
"identifier": "trigger.dev",
17+
"version": "4.0.3",
18+
"runtime_hint": "npx",
19+
"transport": {
20+
"type": "stdio"
21+
},
22+
"package_arguments": [
23+
{
24+
"type": "positional",
25+
"value": "mcp"
26+
}
27+
],
28+
"environment_variables": []
29+
}
30+
]
31+
}

0 commit comments

Comments
 (0)