MCPcopy Create free account
hub / github.com/pollinations/pollinations / tool_github_overview

Function tool_github_overview

apps/polly/src/services/github.py:1525–1535  ·  view source on GitHub ↗

Combined overview query - gets issues, labels, milestones, projects in ONE call. Much faster than making separate calls!

(
    issues_limit: int = 10,
    include_projects: bool = True,
    _context: dict = None,
    **kwargs,
)

Source from the content-addressed store, hash-verified

1523
1524
1525async def tool_github_overview(
1526 issues_limit: int = 10,
1527 include_projects: bool = True,
1528 _context: dict = None,
1529 **kwargs,
1530) -> dict:
1531 """
1532 Combined overview query - gets issues, labels, milestones, projects in ONE call.
1533 Much faster than making separate calls!
1534 """
1535 return await github_graphql.get_repo_overview(issues_limit=min(issues_limit, 50), include_projects=include_projects)
1536
1537
1538# Singleton instance

Callers

nothing calls this directly

Calls 1

get_repo_overviewMethod · 0.80

Tested by

no test coverage detected