Firme Romanesti
Server Details
Public, read-only access to ~3.9M Romanian companies (data from ONRC, ANAF, and the Ministry of Finance). Five tools: search & filter companies by name, CAEN activity, county, revenue/profit/employee ranges, and VAT status; fetch a company profile by CUI; yearly financial history; public status flags (VAT, insolvency, dissolution, e-Factura); and CAEN activity-code lookup. No authentication required.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.9/5 across 5 of 5 tools scored. Lowest: 3.3/5.
Each tool addresses a distinct aspect of Romanian company data: financials, profile, status, CAEN code resolution, and search. There is no overlap in purpose.
All tool names follow a consistent verb_noun pattern using snake_case, making them predictable and easy to understand.
With 5 tools covering core functionality for querying Romanian company data, the set is well-scoped and neither bloated nor insufficient.
The tools provide essential read operations (search, profile, financials, status, CAEN lookup). Missing are update/delete operations (as expected for a directory) and perhaps a way to list all companies without search, but core usage is well covered.
Available Tools
5 toolsget_company_financialsGet company financialsBRead-onlyInspect
Yearly financial history for a company by CUI: revenue, profit, employees, total assets and liabilities. Amounts in RON.
| Name | Required | Description | Default |
|---|---|---|---|
| cui | Yes | ||
| years | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true and destructiveHint=false. The description adds that amounts are in RON and lists fields, but does not disclose any additional behavioral traits such as rate limits, data freshness, or error handling. This provides some value beyond annotations but is minimal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence that front-loads key information. It is concise and avoids unnecessary words, though it could be slightly more structured with separate sentences for parameter details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the limited parameters and no output schema, the description covers the basic purpose but lacks details on how the years parameter works, handling of invalid CUI, or whether data is complete for all years. It is adequate but not fully comprehensive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It explains that cui identifies the company and that data is yearly, but does not describe the format of cui or the purpose of the years parameter (e.g., number of years back). The meaning is partially conveyed but insufficient for an agent to understand usage precisely.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves yearly financial history for a company by CUI, listing specific data fields (revenue, profit, employees, total assets and liabilities). This distinctly separates it from sibling tools like get_company_profile or get_company_status, which focus on other aspects.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool vs alternatives or any prerequisites. The description does not mention scenarios, limitations, or when not to use it, leaving the agent without context for proper tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_company_profileGet company profileARead-onlyInspect
Fetch a single Romanian company by CUI (accepts an 'RO' prefix): identity, address, CAEN activities, latest public financials, and data-source freshness. Does not return contact details.
| Name | Required | Description | Default |
|---|---|---|---|
| cui | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true and destructiveHint=false. The description adds that it does not return contact details and mentions accepting an 'RO' prefix, but does not disclose other behavioral traits like authorization needs or rate limits. It adds moderate value beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that immediately conveys the core purpose. It front-loads the main action and includes both inclusion and exclusion details without any redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description enumerates return fields adequately (identity, address, CAEN activities, financials, freshness). It also states what is not returned. However, it could be more complete by mentioning potential error conditions or data format specifics.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must compensate. It mentions that 'cui' accepts an optional 'RO' prefix, which adds some meaning beyond the schema's type definition. However, it does not explain the format or constraints in detail, leaving ambiguity for an AI agent.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'fetch' and the resource 'Romanian company by CUI'. It enumerates the specific data returned (identity, address, CAEN activities, financials, freshness) and explicitly excludes contact details, distinguishing it from sibling tools like get_company_financials.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not provide any guidance on when to use this tool versus alternatives such as search_companies or get_company_status. It lacks explicit 'when to use' or 'when not to use' instructions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_company_statusGet company statusARead-onlyInspect
Public status flags for a company by CUI: registration status, VAT (TVA) registration, fiscal activity, insolvency, dissolution (radiere), and e-Factura.
| Name | Required | Description | Default |
|---|---|---|---|
| cui | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true, and the description adds valuable context about the specific status flags returned (registration, VAT, insolvency, etc.). It does not contradict annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that lists the returned information. It is front-loaded and contains no fluff, though it could be slightly more concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one parameter, no output schema, annotations present), the description adequately covers the purpose and output. It does not need to explain return values extensively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description compensates by stating the parameter is the CUI (company identifier) used to retrieve status. This adds meaning beyond the bare schema constraints.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool retrieves public status flags for a company by CUI, listing specific status types. This distinguishes it from sibling tools like get_company_financials or get_company_profile.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for obtaining company status but provides no explicit guidance on when to use this tool versus alternatives. No when-not-to-use or comparison with sibling tools is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
resolve_caenResolve CAEN codeARead-onlyInspect
Look up a Romanian CAEN (NACE) activity code and return its official label plus hierarchy (section, division, parent). Labels are in Romanian.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds that labels are in Romanian and hierarchy components are returned, but does not cover behavior on invalid codes or case sensitivity. Adds moderate value beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences front-loaded with the verb 'Look up'. Every sentence adds value without waste.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Simple read-only tool with one parameter and no output schema. Description fully covers what is returned (label + hierarchy, language). No gaps given the tool's complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, but the description explains that the parameter is a Romanian CAEN (NACE) activity code, adding meaning beyond the schema's type and length constraints. Could be improved with an example or format hint, but adequate for a single parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool looks up a Romanian CAEN (NACE) activity code, returning its official label and hierarchy (section, division, parent). This is specific and distinguishes it from sibling tools that handle company data.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage (when you have a CAEN code and need details) but does not explicitly state when to use it versus alternatives like company search tools. No exclusion or alternative guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_companiesSearch Romanian companiesARead-onlyInspect
Search and filter the Firme Românești company directory by name, CAEN activity, county/locality, revenue/profit/employee ranges, and VAT status. Up to 25 results per page with an opaque cursor. Financial filters use a single year (default 2024). Provide at least one filter.
| Name | Required | Description | Default |
|---|---|---|---|
| year | No | ||
| judet | No | ||
| limit | No | ||
| query | No | ||
| cursor | No | ||
| locality | No | ||
| caen_code | No | ||
| max_profit | No | ||
| min_profit | No | ||
| active_only | No | ||
| max_revenue | No | ||
| min_revenue | No | ||
| max_employees | No | ||
| min_employees | No | ||
| vat_registered | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true and destructiveHint=false, confirming it is a safe read operation. The description adds valuable behavioral traits: pagination (25 results, opaque cursor), default year for financial filters (2024), and the requirement to provide at least one filter. It does not contradict annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise at three sentences, each serving a purpose: stating the core function, explaining pagination and year behavior, and providing a usage requirement. It is front-loaded with the main purpose and avoids unnecessary details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (15 parameters, no output schema, rich annotations), the description covers the main use case, pagination, and a key requirement (at least one filter). It could be more complete by explaining the return format or each parameter's meaning, but it provides enough context for an agent to use the tool effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage and 15 parameters, the description partially compensates by listing the filter types (name, CAEN activity, county/locality, revenue/profit/employee ranges, VAT status) and mentioning the opaque cursor and year. However, it does not explain individual parameters like 'judet', 'caen_code', or 'query' in detail, and fails to describe constraints like string lengths or ranges, leaving the agent to infer from schema names.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool searches and filters a specific company directory (Firme Românești) by multiple criteria. It distinguishes itself from sibling tools like get_company_financials, get_company_profile, get_company_status, and resolve_caen, which focus on retrieving specific details or resolving codes, while this tool is for broad search and filtering.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a clear usage context: it is for searching and filtering companies by various attributes. It explicitly states 'Provide at least one filter,' which guides usage. However, it does not explicitly state when to use this tool vs. its siblings, though the context makes it obvious.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!