company-lookup
Server Details
Ukrainian business directory: companies, contacts and registry details (xtrust.info).
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- xtrustinfo/mcp-server-xtrust
- GitHub Stars
- 0
- Server Listing
- mcp-server-xtrust
TDQS
Scored across 3 tools
Each tool has a distinct purpose: lookup a specific company, search by prefix, and post a review. No ambiguity or overlap exists between them.
All tool names follow the same verb_noun pattern using snake_case: lookup_company, post_review, search_companies. The naming is perfectly consistent.
With only 3 tools, the server is well-scoped for a company lookup service. Each tool earns its place without unnecessary bloat or missing core functionality.
The domain is company lookup, fully covered by search and detail lookup. The add-on of review posting is a coherent extension. There are no obvious dead ends or missing operations for the stated purpose.
Available Tools
3 toolslookup_companyAInspect
Look up a company on xtrust.info by slug or name. Returns contacts, rating, phone reputation (KtoZvonil), site trust (Truster) and the official legal entity from the Ukrainian registry (ЄДР).
| Name | Required | Description | Default |
|---|---|---|---|
| slug | No | Company slug from a /biz/{slug} URL | |
| query | No | Company name (used when slug is not given) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. It states that the tool returns various data points, implying a read-only operation, but doesn't mention failure cases, parameter precedence, or any side effects. Minimal transparency beyond the core lookup behavior.
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, information-dense sentence that front-loads the action and lists return categories without any redundancy or extraneous text.
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?
Since there is no output schema, the description compensates by enumerating return categories, which is helpful. It omits some edge-case behavior (e.g., when both slug and query are given), but the schema covers that. Overall, the description is sufficiently complete for a straightforward lookup tool.
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?
Both parameters have full schema descriptions (100% coverage), so the baseline is 3. The description reinforces the slug-or-name dichotomy but adds no new semantic detail beyond what the schema already provides.
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 specifies the tool's function: looking up a company on xtrust.info by slug or name. It also enumerates specific return data, distinguishing it from search_companies and post_review, though it doesn't explicitly contrast with siblings.
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 an exact slug or company name is available, but it does not provide explicit guidance on when to prefer this tool over search_companies or when not to use it. No alternatives or exclusions are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
post_reviewAInspect
Post a company review on behalf of the authenticated user. Requires an OAuth access token with the "write" scope (discover via /.well-known/oauth-protected-resource). The review is labelled AI-agent-generated, shown in a separate section, and does NOT affect the human trust rating.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Company slug from a /biz/{slug} URL | |
| text | Yes | Review text (min 3 chars) | |
| rating | Yes | Star rating 1-5 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full responsibility. It discloses critical behaviors: requires OAuth 'write' scope, the review is labeled AI-agent-generated, shown in a separate section, and does not affect human trust rating. This goes well beyond a basic write operation description.
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 sentences, front-loaded with the main purpose, and every sentence adds value. No fluff or redundancy.
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?
The description covers the purpose, auth requirement, and behavioral outcomes. It doesn't mention the response format or error scenarios, but since there is no output schema, these are not strictly required. The key details for correct invocation are present, making it nearly complete.
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 100%, so the schema already fully explains the three parameters. The description adds no parameter-specific details, but that is unnecessary. It does add the OAuth prerequisite, but that is more behavioral context than parameter semantics. Baseline 3 is appropriate.
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 and resource: 'Post a company review on behalf of the authenticated user.' It distinguishes itself from sibling tools (lookup_company, search_companies) which are read-oriented, whereas this is a write operation.
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?
Provides clear context for when to use: posting a review on behalf of the user. It mentions the prerequisite OAuth token with write scope. It doesn't explicitly name alternatives or exclusions, but the sibling tool names make the distinction obvious.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_companiesAInspect
Search companies on xtrust.info by name prefix; optionally filter by city (Ukrainian). Returns matches with rating and link.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | Optional city in Ukrainian, e.g. Київ | |
| query | Yes | Company name or prefix |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It adds useful context by specifying prefix-based search, optional city filter in Ukrainian, and that it returns rating and link. However, it omits potential behaviors like pagination, result limits, error scenarios, or authentication requirements.
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, front-loaded sentence with no wasted words. It efficiently conveys the core action, optional filter, and return value.
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?
With only two parameters, full schema coverage, and no output schema, the description adequately covers the essentials: purpose, input semantics, and return value (matches with rating and link). It could add detail on result limits or ordering, but for a simple search tool, it is sufficiently complete.
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 covers 100% of parameter descriptions, so baseline is 3. The description restates the schema semantics ('by name prefix', 'optionally filter by city') without adding new meaning. It clarifies that the query is a prefix rather than an exact match, but this was already implied in the schema description.
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 action ('Search'), the resource ('companies on xtrust.info'), and the method ('by name prefix') with an optional filter ('by city'). It distinguishes itself from siblings by describing a search over multiple companies, contrasting with lookup_company's likely targeted retrieval.
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 basic context for what the tool does but offers no explicit guidance on when to use this tool versus the sibling tools (lookup_company, post_review). It doesn't mention alternatives or exclusions, leaving the decision to the agent's inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
3 tool updates
- First observed
lookup_company - First observed
post_review - First observed
search_companies
Related MCP Connectors
Ukrainian license-plate and vehicle lookups: registry data, photos and reviews (trustcar.info).
Ukrainian vessel registry: search by number/name/owner, full records, stats. No API key required.
Company data for Kazakhstan, Uzbekistan and Kyrgyzstan: registration, executives and finances.
Verified company profiles, financials, ownership, registry records and business contacts.
Related MCP Servers
AlicenseAqualityCmaintenanceMCP server for trustcar.info, a Ukrainian license-plate lookup and driver review service. It provides tools to look up vehicle details, recent plates, and post reviews.323 npmMIT- AlicenseAqualityBmaintenanceEnables searching Ukrainian national vessel registries by registration number, name, or owner, retrieving full vessel records, and querying registry statistics, all without an API key.41MIT
- AlicenseNot gradedqualityBmaintenanceCompany data for Spain, France, the UK, Ireland and Poland — registry, KYB and sanctions.46 npmMIT
- AlicenseAqualityCmaintenanceStructured business intelligence for AI agents. 5.5M verified entities across 34 countries, 40.3M BORME mercantile acts, EU VAT validation, GLEIF, healthcare registries. 20 tools.61MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.