Skip to main content
Glama

Companero – Romanian Company Data

get_person

Keywords: profil persoană, lista firme, administrator, asociat, reprezentant legal, lichidator, insolvență, due diligence, KYC, beneficiar real, person profile, company list, ONRC.

Returnează profilul complet al unei persoane fizice (administrator, asociat, reprezentant legal, lichidator) după ID-ul de identitate (24-char hex obținut din search_persons). PAID, 1 credit per apel. Necesită autentificare — anonimii primesc 401 + indicații OAuth.

Sursa: ONRC Open Data (Registrul Comerțului — Legea 265/2022 privind registrul comerțului). Niciun CNP nu e returnat — datele sensibile (CNP, adrese complete) rămân criptate at-rest.

CÂND îl folosești:

  • "Lista completă a firmelor lui X" — apel direct după search_persons. Răspunsul include prima pagină (25 firme) inline.

  • "Persoana e lichidator / implicată în insolvență?" — verifică dacă rolurile au roleCategory: procedural.

  • "Persoana mai apare în firma Y?" — caută companyTaxId == Y în lista returnată.

  • "Persoana e activă în acea firmă?" — vezi isActive per ocurrență; false = persoana nu mai apare în ultimul snapshot ONRC.

  • Roluri istorice — trimite onlyActive: false. Default e true.

Răspunsul include:

  • Nume canonic + variante (alias-uri observate, ex. "POPESCU ION" vs "Ion Popescu")

  • Confidence cluster + flag isCommonName (când true, aparițiile pot fi indivizi diferiți)

  • An și loc de naștere (când sunt publice ONRC)

  • Județe / localități în care a fost observată

  • Lista paginată de companii cu: companyTaxId, nume firmă, tradeNumber, role, roleCategory, linkConfidence, observedAt, isActive, URL firmă

  • _meta.creditsUsed: 1, _meta.dataSource: "ONRC public open-data"

linkConfidence per ocurrență:

  • HIGH: identificare sigură (CNP sau nume + DOB + locul nașterii confirmate)

  • MEDIUM: nume + DOB se potrivesc, fără confirmare suplimentară

  • LOW: doar nume; nume rar deci puțin probabil să fie altcineva

  • UNRESOLVED: nume comun fără elemente discriminatorii — verifică manual înainte să presupui că e aceeași persoană

Paginare: limit (1-100, implicit 25) + offset. Fiecare apel costă 1 credit, indiferent de limit.

Confirmarea costului: un apel care ar consuma credite are nevoie de confirm: true. Fără el primești DEVIZUL (cost în credite și RON, soldul contului, alternativa gratuită dacă există) și nu se consumă nimic — reia apoi EXACT același apel cu confirm: true, după ce omul a acceptat costul.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes24-char hex PersonIdentity id (from search_persons).
pageNoAlias vechi (1-based) pentru `offset`. Folosește `offset`.
limitNoCâte firme din listă (1-100, implicit 25). Numele canonic, la fel ca la celelalte unelte.
offsetNoDe la a câta firmă. Numele canonic.
confirmNoAcordul utilizatorului de a consuma credite pentru acest apel. Fără el, apelul întoarce DEVIZUL (cost, sold, alternativa gratuită) și nu consumă nimic. Nu îl trimite din proprie inițiativă: întreabă întâi omul.
pageSizeNoAlias vechi pentru `limit`. Folosește `limit`.
onlyActiveNoRestrict to active roles only. Default true.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.7/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden. It thoroughly discloses key behaviors: it is read-only (returns data, no modifications), requires authentication (401 for anonymous), implies cost via credits ('1 credit per apel' and the confirm flow), and describes pagination, data source (ONRC), and privacy (no CNP). The description also explains the confidence levels, which is critical for interpreting results. It only lacks explicit rate-limit disclaimers, but the cost/auth/privacy coverage is exceptional for a tool with zero annotation support.

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 clear headers and bullet points, front-loading the purpose and key usage scenarios. It is longer than strictly necessary, but every sentence earns its place by adding functional detail. The inclusion of the `linkConfidence` legend and the confirmation flow are particularly valuable. It could trim some repetition (e.g., the cost is mentioned twice), but this does not detract significantly.

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?

This is a complex tool with 7 parameters, no output schema, and no annotations, yet the description covers everything needed to invoke it correctly: the required ID's origin, the default behavior, the pagination options, the cost model (credits, EUR/RON, confirm), the data-source legality, the absence of CNP, and the interpretation of confidence levels. It even provides the exact `companyTaxId` field for checking membership. Although an output schema is absent, the description volunteers the response structure in detail, so agents have a complete mental model. Nothing critical is missing.

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

Parameters5/5

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

Schema coverage is 100%, but the description elevates each parameter with critical context. It explains that `limit` and `offset` control pagination, that `onlyActive` defaults to true and can be set to false for historical roles, and that `confirm` is a cost-consent gate. It also clarifies the deprecated aliases (`page` and `pageSize`) encouraging use of `offset` and `limit`. This goes well beyond the schema's basic type hints, making parameter semantics exceptionally clear.

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 is precise: it names the specific verb ('Returnează profilul complet al unei persoane fizice'), the resource (person identified by ID), and its scope (roles, companies, confidence levels). It clearly distinguishes from siblings like search_persons by stating it takes an ID and returns a full profile, and from get_company by focusing on person-centric data. It also provides concrete use-case examples, eliminating any ambiguity about its role.

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 states when to use the tool ('CÂND îl folosești' section) with four concrete scenarios, each mapping to specific fields like `roleCategory: procedural` and `isActive`. It also explains when NOT to use it implicitly by noting that direct calls follow `search_persons`, and it provides explicit instructions on using the `confirm` parameter as a prerequisite for paid calls. This is a model of usage guidance.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources