Skip to main content
Glama
stornoro

Storno CLI

by stornoro

companies_create

Add a company or individual person to your organization. For companies, provide the CIF to retrieve ANAF data; for individuals, provide CNP, name, city, and county.

Instructions

Add a company or an individual person to the organization. Company: give the CIF (with or without RO); ANAF supplies name, address and VAT status. Individual person (persoană fizică, the landlord who files D212 / C168 as a person): type "individual" with the CNP, full name, city and county (address optional); nothing is fetched from ANAF and the CNP is checked (13 digits, control digit). Never invent a CNP.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cifNoRomanian tax identification number / CIF (e.g., "12345678" or "RO12345678") — companies only
cnpNoThe person's CNP (13 digits) — individuals only
cityNoCity / localitate — individuals only (required)
nameNoFull name — individuals only
typeNo"individual" for an individual person identified by CNP (default company)
emailNo
phoneNo
stateNoCounty / județ — individuals only (required)
addressNoStreet and number — individuals only
countryNoISO country, default RO

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.0.38
    • changedInput schema / properties / type / description
      Previous value: -"\"individual\" for a natural person identified by CNP (default company)"New value: +"\"individual\" for an individual person identified by CNP (default company)"
  2. Changed11 schema fields changedv1.0.37
    • addedInput schema / properties / address
      Added value: +{
      +  "description": "Street and number — individuals only",
      +  "type": "string"
      +}
    • changedInput schema / properties / cif / description
      Previous value: -"Romanian tax identification number / CIF (e.g., \"12345678\" or \"RO12345678\")"New value: +"Romanian tax identification number / CIF (e.g., \"12345678\" or \"RO12345678\") — companies only"
    • addedInput schema / properties / city
      Added value: +{
      +  "description": "City / localitate — individuals only (required)",
      +  "type": "string"
      +}
    • addedInput schema / properties / cnp
      Added value: +{
      +  "description": "The person's CNP (13 digits) — individuals only",
      +  "type": "string"
      +}
    • addedInput schema / properties / country
      Added value: +{
      +  "description": "ISO country, default RO",
      +  "type": "string"
      +}
    • addedInput schema / properties / email
      Added value: +{
      +  "type": "string"
      +}
    • addedInput schema / properties / name
      Added value: +{
      +  "description": "Full name — individuals only",
      +  "type": "string"
      +}
    • addedInput schema / properties / phone
      Added value: +{
      +  "type": "string"
      +}
    • addedInput schema / properties / state
      Added value: +{
      +  "description": "County / județ — individuals only (required)",
      +  "type": "string"
      +}
    • addedInput schema / properties / type
      Added value: +{
      +  "description": "\"individual\" for a natural person identified by CNP (default company)",
      +  "enum": [
      +    "company",
      +    "individual"
      +  ],
      +  "type": "string"
      +}
    • removedInput schema / required
      Removed value: -[
      -  "cif"
      -]
  3. First observedv1.0.17

TDQS

A4.3/5.0
Behavior4/5

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

The description discloses important behavioral traits: for companies, ANAF supplies name, address, and VAT status; for individuals, nothing is fetched from ANAF and the CNP is checked (13 digits, control digit). It also includes a strong warning 'Never invent a CNP.' Since no annotations are provided, the description carries the full burden, and it does a good job explaining what happens during creation and what validations occur.

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 and front-loaded with the core purpose. It uses a compact format with clear sections for company and individual cases. The warning 'Never invent a CNP' is a valuable addition. It's slightly dense but every sentence earns its place, covering both entity types, data sources, and validation rules without unnecessary fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (10 parameters, two distinct entity types, no output schema), the description covers the essential context: what data is required for each type, what happens during creation (ANAF fetch vs CNP validation), and the critical warning about not inventing CNPs. It doesn't explain return values, but with no output schema and the focus on creation behavior, the description is reasonably complete for an agent to invoke it correctly.

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 80%, so the schema already documents most parameters. The description adds meaningful context beyond the schema: it explains the relationship between CIF and ANAF data fetching, clarifies that CNP is validated (13 digits, control digit), and specifies that city/county are required for individuals. It also clarifies the 'type' parameter's role in selecting between company and individual paths. This adds value beyond the schema's 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 clearly states the tool adds a company or an individual person to the organization, with distinct verbs and resources. It distinguishes between the two entity types and their required identifiers (CIF vs CNP), making it easy to understand what the tool does and how it differs from sibling tools like companies_update or companies_list.

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 to use this tool: to add a company or individual person. It explains the two usage paths (company with CIF, individual with CNP) and gives explicit guidance on what data is needed for each. However, it doesn't explicitly state when NOT to use it or name alternatives like companies_update for modifying existing entities, though the context is strong enough to infer the distinction.

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