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
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 4.2/5 across 3 of 3 tools scored.
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) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It discloses what data is returned (contacts, rating, phone reputation, etc.), which is helpful. However, it doesn't mention potential errors, required-input behavior, or any limitations.
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?
A single, well-structured sentence that front-loads the action and clearly lists return items. No wasted words.
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 tool is simple with only two optional parameters. The description explains the return payload sufficiently. Minor gap: it doesn't state that at least one parameter is required or what happens if both are omitted, but the schema's 'used when slug is not given' covers precedence.
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 descriptions cover 100% of parameters and explain both slug and query. The description adds no new parameter-level detail, so baseline 3 applies.
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 uses a specific verb 'look up' with a clear resource ('company on xtrust.info') and states the two lookup modes (slug or name). It is distinct from siblings: search_companies is for discovery, post_review for writing.
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 when to use it: when you have a specific company slug or name. It doesn't explicitly contrast with alternatives, but the sibling names and context make the distinction obvious. No 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 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It discloses critical behaviors: requires OAuth scope, review is labelled AI-agent-generated, appears in a separate section, and does not affect human trust rating. This goes beyond generic write-operation language.
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-load the purpose and then add important behavioral context. Every phrase earns its place with no 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?
For a 3-parameter tool with no output schema, the description covers purpose, authentication, and side effects (labelling, separate section, trust rating impact). It is complete for the given complexity and sibling context.
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% with clear explanations for slug, text, and rating (including constraints). The description adds no additional parameter context, but the schema fully covers semantics, so 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 states a specific verb ('Post') and resource ('company review') with additional context about the authenticated user. It clearly distinguishes from sibling tools (lookup_company, search_companies) which are read-only, by being 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?
The description implies when to use this tool (to post a review after finding a company) and provides a prerequisite (OAuth token with write scope). It does not explicitly mention alternatives or exclusions, but the context is clear given the read-only siblings, so it earns a 4.
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 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It usefully discloses that the tool returns matches with rating and link, implying a read-only operation. However, it does not mention pagination, result limits, or authentication requirements, leaving some behavioral gaps.
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 one front-loaded sentence that efficiently conveys the primary action, optional filter, and output. No wasted words.
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?
For a simple 2-parameter search tool with no output schema, the description covers the input, the filter, and the return value (rating and link). It lacks details on result limits or sorting, but is otherwise complete for basic agent invocation.
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 baseline is 3. The description adds no extra meaning beyond the schema: 'by name prefix' mirrors the schema's 'Company name or prefix', and 'city (Ukrainian)' is already in the schema description. No new parameter semantics are provided.
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 searches companies on xtrust.info by name prefix, with optional city filtering. This distinguishes it from siblings: lookup_company (likely a single-company lookup) and post_review (for posting reviews).
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 context is clear: use for searching by name prefix, not exact lookup or posting. However, it doesn't explicitly name alternatives or state when not to use it, so it lacks the explicit exclusions that would merit a 5.
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!
Related MCP Servers
Alicense-qualityCmaintenanceMCP 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.Last updatedMIT- Alicense-qualityBmaintenanceCompany data for Spain, France, the UK, Ireland and Poland — registry, KYB and sanctions.Last updated909MIT
- 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.Last updated61MIT
- AlicenseAqualityAmaintenanceLook up Polish companies from any AI assistant: registry data (KRS, REGON, CEIDG), VAT white list checks before payments, and financial statements of 4.4M businesses. Read-only tools backed by official public registers.Last updated4MIT
Your Connectors
Sign in to create a connector for this server.