Skip to main content
Glama
subbuyalla

WeTrack Enterprise MCP Server

by subbuyalla

wetrack_get_project

Fetch full project details using a project UUID, giving organized access to all associated project data.

Instructions

Get full details of a single project.

Args: project_id: The project UUID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.6/5.0
Behavior2/5

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

Annotations are completely absent (none provided), so the description must carry the full burden of disclosing behavioral aspects. It only says 'Get full details' which is vague. It does not mention what 'full details' includes, whether the operation is read-only, any required authentication, or what happens if the project_id is invalid or not found. This is a significant gap for a data retrieval tool.

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

Conciseness4/5

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

The description is very short but wastes no words. It is front-loaded with the purpose and includes a minimal parameter listing. However, it is under-specified, but conciseness is fine as there are no redundant sentences. It could be more concise by removing the redundant 'Args:' section that repeats the schema.

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

Completeness2/5

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

The tool has a single parameter but no annotations or output schema documentation. The description does not explain the return value structure, which is a key aspect for an agent to understand what 'full details' means. Given the tool's complexity is low, but the lack of behavioral disclosure and return format info makes it incomplete for effective use.

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

Parameters1/5

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

Schema description coverage is 0%, meaning the input schema provides no additional description for the parameter. The description only repeats the parameter name 'project_id: The project UUID.' It does not explain the format of the UUID, how to obtain it, or any constraints. The description adds almost no value beyond the schema itself.

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

Purpose4/5

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

The description states a clear verb and resource ('Get full details of a single project') and distinguishes from siblings that list projects or get related data. It is specific enough to be understood, though it does not explicitly differentiate from other 'get project' variants like wetrack_get_project_overview, but it is generally clear.

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

Usage Guidelines2/5

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

There is no guidance on when to use this tool versus alternatives. The description does not mention that it is for retrieving full details when a project ID is known, or that listing tools should be used for discovery. No exclusions or alternatives are given.

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

Deploy Server

Other Tools