Skip to main content
Glama
alexherbaly

upservice-mcp

by alexherbaly

upservice_get_project

Read-onlyIdempotent

Retrieve a project by its ID. Returns the project record in JSON format.

Instructions

Retrieve a single project by ID.

Args: params (ProjectIdInput): project_id (int)

Returns: str: JSON of the project record, or "Error: Resource not found (404)" if it doesn't exist.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
paramsYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds the return format (JSON string or error) and the exact error message, which is valuable beyond annotations.

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 extremely concise: two sentences plus a structured Args/Returns block. No unnecessary words, and information is front-loaded, making it easy to parse.

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

Completeness5/5

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

For a simple get-by-ID tool with annotations covering safety and idempotency, this description is complete. It specifies the required parameter, the return type (JSON), and the error case (404). No additional context is needed.

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?

Despite the context signal indicating 0% schema description coverage, the schema actually includes a description for project_id. The tool description merely restates the parameter name and type ('project_id (int)'), adding no new meaning. It does not compensate for any missing schema details.

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 action: 'Retrieve a single project by ID.' It distinguishes from sibling tools like upservice_list_projects (list) and upservice_get_sprint (get by ID for a different entity), making the purpose unambiguous.

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

Usage Guidelines4/5

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

The description implicitly indicates when to use: when you have a specific project ID. It does not explicitly contrast with list_projects or other get tools, but the purpose is clear enough for correct selection.

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