Detect what github-bug-capture supports
Use this when an MCP host, orchestrating agent, or sibling plugin needs to confirm this server is reachable and discover its tool surface and sibling dependencies without probing each tool individually.
-
Call the tool with no arguments:
get_agent_capabilities -
Read the response:
{"plugin": "github-bug-capture","tools": ["get_agent_capabilities","ensure_severity_field","set_severity","get_lifecycle_state","set_lifecycle_state","search_similar_issues","close_as_duplicate"],"mifConformance": "L1","composesWith": ["github-pull-requests", "github-sdlc-planning"],"hooksSupported": true} -
Branch on
toolsif you need to feature-detect before calling a specific tool (useful when talking to a version of this server that might predate a given tool). -
Use
composesWithto confirm the sibling plugins this server expects — per ADR-0002, PR-linkage calls belong togithub-pull-requests, not this server.
See also
Section titled “See also”- reference/tools.md for the full schema of every listed tool.