Skip to main content
Glama
JustParent

hibob-advanced-mcp

by JustParent

hibob_create_position

Create a planned position with its opening and optional budget in HiBob workforce planning. Resolve list item IDs for department, site, and job profile before calling; one position per call.

Instructions

Create a planned position, with its opening and optional budget.

A position is a budgeted seat in the plan; every position must be created with an opening, which is the vacancy to be filled. Field values that reference HiBob lists (department, site, job profile) must be the list item IDs - resolve them first with hibob_get_company_named_lists and hibob_list_workforce_fields.

Creates one position per call. Required fields are checked before the request is sent, because HiBob allows only ten write calls per minute.

Args: position_fields: Flat mapping of position field IDs to values. opening_fields: Flat mapping for the nested opening. budget_fields: Optional flat mapping for the nested budget.

Returns: str: JSON {"id": int, "positionOpeningId": int} identifying the new position, or an error message beginning with "Error:".

Examples: - "Plan a new engineer starting in September" -> position_fields with effectiveDate/fte/department/site/jobProfile plus opening_fields with expectedStartDate. - Don't use when: adding a second vacancy to an existing position (use hibob_create_position_opening).

Rate limit: 10 requests/minute.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
budget_fieldsNoOptional budget. If given, requires "/positionBudget/salaryPayPeriod" and "/positionBudget/currency".
opening_fieldsYesFields for the position's first opening. Required: "/positionOpening/expectedStartDate". Optional: positionOpeningName, recruitmentStatus.
position_fieldsYesPosition fields as a flat mapping, e.g. {"/position/effectiveDate": "2026-09-01", "/position/fte": 100, "/position/department": "<list item ID>", "/position/site": 123, "/position/jobProfile": 456}. Required: effectiveDate, fte, department, site, jobProfile.

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.9/5.0
Behavior5/5

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

Beyond the annotations, the description discloses important runtime behavior: rate limiting ('HiBob allows only ten write calls per minute'), pre-request validation of required fields, and the fact that exactly one position is created per call. It also describes the return format and error convention, which is valuable context for an agent handling failures.

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 well-structured with a clear opening definition, explicit prerequisites, parameter summaries, return format, examples, and an anti-example. Every sentence earns its place, and the most important usage guidance is front-loaded. Despite length, it remains scannable and useful.

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 tool with three nested object parameters and an open-world schema, the description is complete: it explains what a position is, what counts as the opening, how to resolve list IDs, what constraints apply, what the response looks like, and how to avoid misuse. The presence of an output schema reduces the burden of explaining return values, and the description still covers them.

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?

The input schema already covers 100% of parameters with detailed descriptions, so the baseline is 3. The description adds value by clarifying that all three arguments are flat mappings, by explaining that HiBob list values must be list item IDs, and by instructing the agent to resolve those IDs first. This goes beyond the schema's individual field descriptions.

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 states a specific verb and resource: 'Create a planned position, with its opening and optional budget.' It clearly distinguishes this from sibling tools, especially hibob_create_position_opening, by explaining that a position is a budgeted seat and must be created with its first opening. The 'one position per call' constraint further sharpens the purpose.

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

Usage Guidelines5/5

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

The description explicitly tells the agent when to use this tool and when not to, naming the alternative: 'Don't use when: adding a second vacancy to an existing position (use hibob_create_position_opening).' It also gives a concrete example of when to use the tool and instructs the agent to resolve list IDs with hibob_get_company_named_lists and hibob_list_workforce_fields before calling.

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