Skip to content

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.

  1. Call the tool with no arguments:

    get_agent_capabilities
  2. 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
    }
  3. Branch on tools if 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).

  4. Use composesWith to confirm the sibling plugins this server expects — per ADR-0002, PR-linkage calls belong to github-pull-requests, not this server.