-
-
Notifications
You must be signed in to change notification settings - Fork 826
chore(mcp): Add our MCP server to the official MCP registry #2510
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -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", | ||||||||||||||||||||||||||||||||||
Comment on lines
+11
to
+18
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Align versions to what’s published to npm. server.json references 4.0.3, while the CLI package.json is 4.0.2. If the registry ingests this now, npx resolution will fail. Option A (safer now): set both fields to 4.0.2, then bump to 4.0.3 in the release PR. - "version": "4.0.3",
+ "version": "4.0.2",
@@
- "identifier": "trigger.dev",
- "version": "4.0.3",
+ "identifier": "trigger.dev",
+ "version": "4.0.2", Option B: keep 4.0.3 but gate merge until 4.0.3 is actually published. 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents
|
||||||||||||||||||||||||||||||||||
"transport": { | ||||||||||||||||||||||||||||||||||
"type": "stdio" | ||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||
"package_arguments": [ | ||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||
"type": "positional", | ||||||||||||||||||||||||||||||||||
"value": "mcp" | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
], | ||||||||||||||||||||||||||||||||||
"environment_variables": [] | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
] | ||||||||||||||||||||||||||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Version mismatch with server.json (4.0.2 here vs 4.0.3 in server.json).
If the MCP registry fetches the package immediately after this PR merges, pointing the manifest at 4.0.3 while the published package is 4.0.2 will break installs.
Two safe options:
Let me know which route you prefer and I’ll prep the diff.
🤖 Prompt for AI Agents