Skip to main content
Glama
GaneshR-dev

oracle-hcm-mcp

by GaneshR-dev

hcm_get_talent_profile

Read-only

Retrieve a person's talent profile using their unique profile ID. Access Oracle HCM talent details directly through this API.

Instructions

Get talent person profile by id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
profileIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.0

TDQS

A3.6/5.0
Behavior3/5

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

The readOnlyHint annotation already covers the safe read profile, and the description's 'Get' aligns with that. It adds no extra behavioral context like error behavior, authorization needs, or payload scope, but for a simple read-only getter the risk is modest.

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?

A single six-wored sentence with no filler, front-loading the action and target. Every word earns its place.

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?

Adequate for a one-parameter read-only getter: an agent knows to pass profileId and can expect a profile in return. But there is no output schema and no mention of return shape, nor guidance to search_talent_profiles when the ID is unknown, so it is only minimally complete.

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 has zero descriptions for the profileId parameter, so the description must compensate. 'by id' clearly indicates that profileId is the identifier used to fetch the profile; the parameter name itself reinforces this. It lacks format or example, but is sufficient for a single string ID.

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?

States a clear verb (Get), resource (talent person profile), and method (by id). It does not explicitly distinguish itself from hcm_search_talent_profiles or hcm_get_worker, so it misses top sibling-diferentiation.

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?

Implies use when a known profileId is available, which is the natural context for a get-by-id tool. However, it gives no explicit when/when-not guidance, no pointer to the corresponding search tool for finding IDs, and no contrast with similar worker/profile getters.

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