ci: auto-close new-server PRs and triage new-server issues#4528
Open
olaservo wants to merge 1 commit into
Open
ci: auto-close new-server PRs and triage new-server issues#4528olaservo wants to merge 1 commit into
olaservo wants to merge 1 commit into
Conversation
Adds two automations enforcing the CONTRIBUTING.md policy that new server implementations belong in the MCP Server Registry, not this repo: - new-server-pr-check.yml: deterministically detects PRs that add a new top-level directory under src/ (compared against the base branch), labels them new-server-submission, comments with registry pointers, and closes them. Maintainers opt a PR back in by removing the label and reopening. - issue-triage.md (+ compiled lock file): GitHub Agentic Workflow (engine: copilot, billed to the org via copilot-requests: write) that classifies newly opened issues; on high confidence that an issue is a new-server request it labels, comments, and closes as not planned. On any doubt it takes no action. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Adds two automations that enforce the existing CONTRIBUTING.md policy that new server implementations belong in the MCP Server Registry, not this repo.
1.
new-server-pr-check.yml— auto-close PRs adding new servers (deterministic, no AI)pull_request_target(API-only, never checks out PR code).src/that does not exist on the base branch (the existing-directory set is fetched dynamically, so the workflow never needs updating).new-server-submission, posts one comment pointing to the registry and quickstart, and closes it.readme-pr-check.yml, which keeps handling README-only edits with its/i-promise-this-is-not-a-new-serverflow.2.
issue-triage.md(+ compiledissue-triage.lock.yml) — agentic triage of new-server issuesengine: copilot, compiled withgh aw compile --strict(v0.81.6).new-server-request, comment with registry pointers, and close as not planned; on any doubt it takes no action.copilot-requests: writein the frontmatter bills inference to the org Copilot plan (changelog).Motivation and Context
New-server PRs and issues keep arriving despite the policy. Today only README-only PRs get an automated response (comment, no close); PRs adding directories under
src/and issues requesting new servers require manual triage.How Has This Been Tested?
gh aw compile --strictpasses with no warnings; lock file reviewed (triggers, read-only agent job, safe-outputs jobs).src/pith/) is detected; fix: add zod as explicit dependency for servers that import it directly #4446 (dependency fix across existing servers) and fix(git): correct field misalignment in date-filtered git_log #4524 (git server fix) are not. README-only additions like Add thumbgate community server #4292 are correctly left toreadme-pr-check.yml.Types of changes
Additional context
Maintainer follow-ups needed after merge:
new-server-submissionandnew-server-request.copilot-requests: write.