search-mcp-githublisted
Install: claude install-skill NickCollect/ai-coding-runbook
# Searching MCP PRs, issues, and discussions
## Where to search
- **MCP Docs Server** (`mcp-docs` MCP server → `SearchModelContextProtocol` tool): Authoritative for current spec content. **Prefer this first** for specification details, API references, and protocol concepts.
- **Spec PRs & Issues**: `gh search prs` / `gh search issues` in `modelcontextprotocol/modelcontextprotocol` (searches open and closed by default)
- **Spec Discussions**: https://github.com/modelcontextprotocol/modelcontextprotocol/discussions (requires GraphQL — see below)
- **Org Discussions**: https://github.com/orgs/modelcontextprotocol/discussions (requires GraphQL — see below)
For historical decisions, prioritize merged PRs and closed issues over open items.
## Searching discussions
There is no `gh search discussions` command. Use the GraphQL API:
```bash
# Spec-repo discussions
gh api graphql -f query="query { search(query: \"repo:modelcontextprotocol/modelcontextprotocol <topic>\", type: DISCUSSION, first: 20) { nodes { ... on Discussion { title url body author { login } authorAssociation category { name } answer { author { login } authorAssociation body } } } } }"
# Org-wide discussions
gh api graphql -f query="query { search(query: \"org:modelcontextprotocol <topic>\", type: DISCUSSION, first: 20) { nodes { ... on Discussion { title url body author { login } authorAssociation category { name } answer { author { login } authorAssociation body } } } } }"
```
## Search term variants
GitHub