docs: point to flashduty-cli for full open-API coverage#73
Merged
Conversation
The MCP server intentionally ships a curated, task-oriented toolset rather than mirroring all open-API operations. Make that explicit: - server-level instructions in the initialize response so connected agents learn that full 1:1 coverage lives in flashduty-cli (overridable via GITHUB_MCP_SERVER_INSTRUCTIONS like other strings) - a matching note in README.md / README_zh.md - gci import reorder in pkg/flashduty/format.go from make fmt
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.
The MCP server intentionally ships a curated, task-oriented toolset rather than mirroring all open-API operations (large 1:1 tool catalogs bloat model context and degrade tool selection). This PR makes that design explicit instead of leaving it as an apparent gap:
initializeresponse): connected agents are told the toolset is curated and that full 1:1 open-API coverage lives in flashduty-cli. Overridable viaGITHUB_MCP_SERVER_INSTRUCTIONS, same translator path as all other client-facing strings.pkg/flashduty/format.go: gci import reorder frommake fmt(pre-existing drift).Verified:
make test+make buildgreen; stdioinitializereturns the instructions, and the env override works end-to-end.