Skip to main content
Glama

ENTIA Entity Verification

Get Competitors

get_competitors
Read-onlyIdempotent

Find real competitors in the same sector and city. Ranked entities with identity + location + sector matching. Spain only on the public surface. sector is a closed vocabulary — see the enum; aliases such as abogados (the slug ENTIA uses in its own Entia Home URLs) resolve to their canonical slug.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityYesCity name in Spain (Madrid, Barcelona, Valencia, Sevilla, Bilbao)
limitNoMax results (1-30)
sectorYesENTIA sector slug. Canonical: dental, legal, estetica, psicologia, medicos, talleres, veterinarios, reformas, inmobiliarias, asesorias, gimnasios… Aliases (abogados, salud, dentist, beautysalon…) resolve to a canonical slug and the response declares the translation in _meta.sector_resolved_from.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityNo
_metaNoCarries sector_resolved_from / sector_resolved_to
countNo
sectorNoCanonical slug actually used after alias resolution
countryNo
competitorsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "additionalProperties": true,
      +  "description": "Ranked competitors in the same sector and city. Spain only on the public surface.",
      +  "properties": {
      +    "_meta": {
      +      "description": "Carries sector_resolved_from / sector_resolved_to",
      +      "type": "object"
      +    },
      +    "city": {
      +      "type": "string"
      +    },
      +    "competitors": {
      +      "items": {
      +        "type": "object"
      +      },
      +      "type": "array"
      +    },
      +    "count": {
      +      "type": "integer"
      +    },
      +    "country": {
      +      "type": "string"
      +    },
      +    "sector": {
      +      "description": "Canonical slug actually used after alias resolution",
      +      "type": "string"
      +    }
      +  },
      +  "type": "object"
      +}
  2. Changed7 schema fields changed
    • changedInput schema / properties / city / description
      Previous value: -"City name (Madrid, Barcelona, London, Paris)"New value: +"City name in Spain (Madrid, Barcelona, Valencia, Sevilla, Bilbao)"
    • addedInput schema / properties / limit / description
      Added value: +"Max results (1-30)"
    • changedInput schema / properties / limit / maximum
      Previous value: -50New value: +30
    • changedInput schema / properties / sector / description
      Previous value: -"ENTIA sector slug (estetica, dental, psicologia, legal, …)"New value: +"ENTIA sector slug. Canonical: dental, legal, estetica, psicologia, medicos, talleres, veterinarios, reformas, inmobiliarias, asesorias, gimnasios… Aliases (abogados, salud, dentist, beautysalon…) resolve to a canonical slug and the response declares the translation in _meta.sector_resolved_from."
    • addedInput schema / properties / sector / enum
      Added value: +[
      +  "abogados",
      +  "accountingservice",
      +  "asesoria",
      +  "asesorias",
      +  "attorney",
      +  "automocion",
      +  "automotivebusiness",
      +  "autorepair",
      +  "barberia",
      +  "barberias",
      +  "beautysalon",
      +  "belleza",
      +  "clinicas",
      +  "construccion",
      +  "consultoria",
      +  "dental",
      +  "dentist",
      +  "dentista",
      +  "ecommerce",
      +  "educacion",
      +  "energia",
      +  "estetica",
      +  "exercisegym",
      +  "farmacia",
      +  "farmacias",
      +  "financial",
      +  "financialservice",
      +  "fisio",
      +  "fisioterapia",
      +  "foodestablishment",
      +  "generalcontractor",
      +  "gestion",
      +  "gestoria",
      +  "gestorias",
      +  "gimnasio",
      +  "gimnasios",
      +  "hairsalon",
      +  "healthandbeautybusiness",
      +  "healthcare",
      +  "healthclub",
      +  "homeandconstructionbusiness",
      +  "hospital",
      +  "hospitality",
      +  "inmobiliaria",
      +  "inmobiliarias",
      +  "insurance",
      +  "insuranceagency",
      +  "legal",
      +  "legalservice",
      +  "medicalbusiness",
      +  "medicalclinic",
      +  "medico",
      +  "medicos",
      +  "nutricion",
      +  "optica",
      +  "opticas",
      +  "optician",
      +  "peluqueria",
      +  "peluquerias",
      +  "pharmacy",
      +  "physician",
      +  "physiotherapyclinic",
      +  "podologia",
      +  "psicologia",
      +  "psychologist",
      +  "realestate",
      +  "realestateagent",
      +  "reformas",
      +  "restauracion",
      +  "restaurant",
      +  "restaurantes",
      +  "rrhh",
      +  "saas",
      +  "salud",
      +  "security",
      +  "seguros",
      +  "sportsactivitylocation",
      +  "taller",
      +  "talleres",
      +  "telecom",
      +  "turismo",
      +  "veterinario",
      +  "veterinarios",
      +  "veterinarycare"
      +]
    • removedInput schema / properties / sector / maxLength
      Removed value: -50
    • removedInput schema / properties / sector / minLength
      Removed value: -2
  3. Changed5 schema fields changed
    • removedInput schema / $schema
      Removed value: -"http://json-schema.org/draft-07/schema#"
    • removedInput schema / additionalProperties
      Removed value: -false
    • changedInput schema / properties / city / description
      Previous value: -"City name in the target country (e.g. Madrid, Barcelona, London, Paris)."New value: +"City name (Madrid, Barcelona, London, Paris)"
    • removedInput schema / properties / limit / description
      Removed value: -"Maximum competitors to return (1-50, default 10)."
    • changedInput schema / properties / sector / description
      Previous value: -"ENTIA sector slug (e.g. estetica, dental, psicologia, legal, inmobiliaria, restaurantes, gimnasios, salud)."New value: +"ENTIA sector slug (estetica, dental, psicologia, legal, …)"
  4. Added

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already indicate the tool is read-only, open-world, idempotent, and nondestructive. The description adds behavioral insight by explaining how sector aliases are resolved (e.g., `abogados` resolves to canonical slug) and that the response includes `_meta.sector_resolved_from`. This goes beyond annotations, though it does not detail rate limits or potential response variability.

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 concise (3 sentences) and front-loaded with the core purpose. The additional detail about sector vocabulary is placed naturally, but the last sentence could be slightly more streamlined to avoid over-explaining the alias resolution, though it remains valuable.

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 has an output schema and clear annotations, the description covers the key aspects: purpose, sector vocabulary behavior, and geographic scope. It does not address pagination or ordering of results, which could be inferred from the `limit` parameter. For a ranking tool with clear constraints, this is nearly complete but missing an explicit statement about result ordering (e.g., by relevance).

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 adds significant value beyond the schema by explaining that `sector` is a closed vocabulary with aliases that resolve to canonical slugs, and that the response will indicate the resolution. It also clarifies that `city` is limited to Spanish cities, reinforcing the geographic constraint. This rich semantic guidance helps the agent avoid errors with non-canonical values.

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's purpose: 'Find real competitors in the same sector and city.' It specifies the criteria (identity, location, sector matching) and geographic scope (Spain only), which distinguishes it from siblings like `search_entities` or `entity_lookup` that likely have broader or different search capabilities.

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 usage guidance by specifying the geographic constraint ('Spain only on the public surface') and noting that the `sector` parameter uses a closed vocabulary with aliases. However, it does not explicitly mention when not to use this tool (e.g., for non-Spain competitors or non-public data) or compare it directly to sibling tools, though the sibling context suggests differentiation from `search_entities`.

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.