Skip to main content
Glama
mikkmihkel

BambooHR MCP Server

by mikkmihkel

List BambooHR users

bamboohr_list_users
Read-onlyIdempotent

List BambooHR user accounts with employee ID, email, status, and last login. Filter by enabled or disabled to identify accounts for access reviews.

Instructions

List BambooHR user accounts (people who can log in) with their linked employee id, email, status and last login. Useful for access reviews: who has an enabled account, who never logged in.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusNoOnly accounts with this status. Default: all.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.0.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already signal read-only, idempotent, open-world, and non-destructive behavior. The description adds useful context by specifying the returned fields (linked employee id, email, status, last login) and the access-review purposeais without contradicting 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 two sentences with no filler. It front-loads the core behavior and result fields, then adds a concrete use case. Every sentence earns its place.

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 list tool with one optional parameter and strong annotations, the description covers what the tool returns, who it applies to, and why it is useful. No critical information for invoking it correctly is missing.

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 coverage is 100% and the only parameter, status, is fully documented with an enum and default of 'all'. The description mentions 'status' but does not add meaning beyond what the schema already provides, so the baseline score applies.

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 names a specific verb ('List') and resource ('BambooHR user accounts') and clarifies that these are 'people who can log in', distinguishing them from employee records. This clearly differentiates from siblings like bamboohr_list_employees.

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 gives a clear use case: 'access reviews: who has an enabled account, who never logged in.' It does not explicitly state when not to use this tool or name alternatives, but the definition of user accounts versus employees makes the appropriate context clear.

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