Skip to main content
Glama
alexherbaly

upservice-mcp

by alexherbaly

upservice_get_sprint

Read-onlyIdempotent

Retrieve a specific sprint by its ID, returning full sprint details in JSON format.

Instructions

Retrieve a single sprint by ID.

Args: params (SprintIdInput): sprint_id (int)

Returns: str: JSON of the sprint record.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
paramsYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior2/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, making the safety profile clear. The description adds no additional behavioral context (e.g., error handling for missing IDs, return format details beyond 'JSON of the sprint record'), so it fails to enhance transparency beyond the annotations.

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

Conciseness3/5

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

The description is short but includes a Python docstring format (Args/Returns) that is unnecessary for MCP and adds clutter. It could be more direct without sacrificing clarity.

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 tool's simplicity (single parameter, read-only), the description, combined with the annotations and output schema (present but not shown), provides adequate context. It explains the input and return value, though error scenarios are omitted.

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?

The input schema defines a single required integer parameter 'sprint_id' with a description. The tool description repeats 'sprint_id (int)' without adding any new meaning, such as valid range, source, or behavioral implications. With schema description coverage at 0% for the top-level 'params' property, the description should compensate but does not.

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 starts with 'Retrieve a single sprint by ID,' clearly stating the verb (retrieve) and resource (sprint) with a specific identifier. This immediately distinguishes it from sibling tools like upservice_list_sprints (list multiple) and upservice_create_sprint (create).

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

Usage Guidelines3/5

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

No explicit guidance is provided on when to use this tool versus alternatives. While the tool's purpose is straightforward (get a sprint by ID), the presence of upservice_list_sprints for batch retrieval suggests that usage guidance could be helpful but is missing.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/alexherbaly/upservice-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server