Skip to main content
Glama
JustParent

hibob-advanced-mcp

by JustParent

hibob_search_position_openings

Read-onlyIdempotent

Search position openings by recruitment status to identify vacant, starting, filled, or departing seats. Use filters and pagination to get precise, human-readable results.

Instructions

Search position openings, the vacancies attached to positions.

Openings carry the recruitment view of a position: expected start date, recruitment status and whether the seat is vacant, starting, filled or departing.

Args: fields: Field IDs to return (1-50). filters: Optional filter clauses. limit: Page size, 1-100. cursor: Cursor from a previous page, or None to start. include_human_readable: Include display labels.

Returns: str: JSON of the form {"count": int, "entries": [...], "has_more": bool, "next_cursor": str}. When "has_more" is true, call again passing "next_cursor" to retrieve the rest.

Examples: - "Which openings are still vacant?" -> filters=[{field_id: '/positionOpening/status', operator: 'equals', values: ['vacant']}]

Rate limit: 100 requests/minute.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum entries per page.
cursorNoPass the 'next_cursor' from a previous call to get the next page.
fieldsYesField IDs to return, 1-50, e.g. ['/positionOpening/id', '/positionOpening/status'].
filtersNoOptional filters. Filterable fields: '/positionOpening/id', '/positionOpening/status' (vacant, starting, filled, departing), '/positionOpening/positionOpeningName'.
include_human_readableNoAlso return display labels for each value.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv0.1.0

TDQS

A4.6/5.0
Behavior5/5

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

Annotations already mark the call as read-only and idempotent, and the description adds valuable behavioral details beyond them: pagination through has_more/next_cursor, the exact JSON return envelope, the instruction to call again with next_cursor, and a concrete rate limit of 100 requests/minute. Nothing in the description contradicts 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.

Conciseness4/5

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

The description is well-structured with purpose, args, returns, example, and rate limit. It is front-loaded and readable, though the Args section largely duplicates the input schema and could have been trimmed. The example and pagination details justify the overall length.

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 paginated search tool, the description covers the full call lifecycle: required fields, optional filters, pagination loop, return envelope, rate limit, and a concrete usage example. The output schema covers return values and annotations cover safety, so no critical information is missing for correct invocation.

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

Parameters4/5

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

Schema coverage is 100%, so the baseline is 3; the description mostly restates parameter meanings but adds a worked filter example showing exactly how to encode field_id, operator, and values. It also clarifies the status domain (vacant, starting, filled, departing), which helps agents build correct filters without opening the schema.

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 opens with 'Search position openings' and immediately defines them as 'the vacancies attached to positions,' which clearly identifies the resource and separates the tool from position-level searches. It also explains that openings carry the recruitment view, making the tool's domain concrete.

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 provides clear context for when this tool is relevant: it exposes recruitment status, expected start date, and whether a seat is vacant/starting/filled/departing. It also includes a natural-language example ('Which openings are still vacant?') with the matching filter. However, it does not explicitly name alternatives or state when not to use this tool versus sibling search tools.

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

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/JustParent/hibob-advanced-mcp'

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