chore(mcp): Add our MCP server to the official MCP registry (#2510)

See: 
https://blog.modelcontextprotocol.io/posts/2025-09-08-mcp-registry-preview/
This commit is contained in:
Eric Allam
2025-09-16 10:44:41 +01:00
committed by GitHub
parent 04dcb81496
commit 08702cd710
3 changed files with 39 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"trigger.dev": patch
---
Add the mcpName property to the CLI package.json to allow publishing our MCP server to the Anthropic MCP registry
+3 -2
View File
@@ -1,7 +1,7 @@
{
"name": "trigger.dev",
"version": "4.0.2",
"description": "A Command-Line Interface for Trigger.dev (v3) projects",
"description": "A Command-Line Interface for Trigger.dev projects",
"type": "module",
"license": "MIT",
"repository": {
@@ -12,6 +12,7 @@
"publishConfig": {
"access": "public"
},
"mcpName": "io.github.triggerdotdev/trigger.dev",
"keywords": [
"typescript",
"trigger.dev",
@@ -154,4 +155,4 @@
}
}
}
}
}
+31
View File
@@ -0,0 +1,31 @@
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
"name": "io.github.triggerdotdev/trigger.dev",
"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",
"status": "active",
"repository": {
"url": "https://github.com/triggerdotdev/trigger.dev",
"source": "github",
"subfolder": "packages/cli-v3"
},
"version": "4.0.3",
"packages": [
{
"registry_type": "npm",
"registry_base_url": "https://registry.npmjs.org",
"identifier": "trigger.dev",
"version": "4.0.3",
"runtime_hint": "npx",
"transport": {
"type": "stdio"
},
"package_arguments": [
{
"type": "positional",
"value": "mcp"
}
],
"environment_variables": []
}
]
}