Skip to main content
Glama
saidsef

GitHub PR Issue Analyser

by saidsef

Github Get User Activities

github_get_user_activities
Read-only

Retrieve GitHub user activities filtered by organization, repository, and date range to analyze contributions.

Instructions

Get user activities with optional filtering by org, repo, and date range using GraphQL API. since/until accept YYYY-MM-DD or full ISO 8601 (YYYY-MM-DDTHH:MM:SSZ). Note: repo_stars is each repository's current cumulative star count, not stars gained within the requested period. Use github_get_repo_stars_since for per-period deltas.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
orgNo
repoNo
sinceNo
untilNo
usernameYes
max_resultsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
issuesYes
commitsYes
reviewsYes
usernameYes
date_rangeYes
repo_starsYes
pull_requestsYes
total_contributionsYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv42.0.0

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false, so the description doesn't need to repeat safety. It adds valuable behavioral nuance by explaining that repo_stars is cumulative, not period-specific, and clarifies date format acceptance. It does not disclose rate limits or pagination, but these are minor given the output schema exists.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and front-loaded: the first sentence states the purpose, the second covers date formats, and the final sentence adds a critical caveat and alternative. Every sentence earns its place with no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the output schema exists and annotations cover read-only behavior, the description covers most essential aspects: purpose, filters, date formats, and a notable caveat. However, it omits explanation of max_results semantics and any pagination behavior, which an agent might need. It is still fairly complete for its complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate for all parameters. It only explains since/until formats; org, repo, username, and max_results are left undefined. While org and repo are somewhat self-explanatory, max_results and the exact meaning of 'activities' are not clarified. This is a significant gap for a tool with six parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: getting user activities with optional filters. It names the GraphQL API and explicitly contrasts with a sibling tool (github_get_repo_stars_since) for star deltas, which distinguishes it from related tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit guidance on when not to use this tool for star deltas and directs to an alternative. The date format requirements are also clearly stated, giving concrete usage instructions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.