Skip to main content
Glama
iseletsk
by iseletsk

get-employee-goals

Retrieve performance goals for any employee using their employee ID. Access individual goal details directly from BambooHR data.

Instructions

Get performance goals for a specific employee

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
employeeIdYesThe employee ID (numeric)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior3/5

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

No annotations are provided, so the description must carry the behavioral disclosure burden. The verb 'Get' clearly implies a read operation with no side effects, but the description does not mention behavior for missing employees, empty goal lists, or permission requirements.

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 a single, front-loaded sentence with no filler words. Every word contributes to identifying the operation and its scope.

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

Completeness3/5

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

For a simple one-parameter getter this is minimally adequate, but with no output schema and no annotations the description could usefully state what is returned (e.g., goal details, status, or empty results). The gaps are not severe, but common call-time questions remain unanswered.

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

Parameters3/5

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

Schema description coverage is 100%; employeeId is already documented as 'The employee ID (numeric)'. The description only adds 'specific employee', which is consistent but adds no meaning beyond the schema, so the baseline 3 applies.

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 uses a specific verb ('Get') and clearly identifies the resource ('performance goals') and the target ('a specific employee'). It distinguishes from sibling tools like get-employee by naming the resource, though it does not explicitly call out any sibling.

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?

The phrase 'for a specific employee' implies this tool is for per-employee goal retrieval, not bulk or directory queries. However, it gives no explicit when-to-use guidance or alternatives, such as using find-employee when the ID is unknown.

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