MCP Hub
Back to servers

ENTIA Entity Verification

Structured 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.

glama
Updated
Apr 13, 2026

ENTIA MCP Server

Structured business intelligence for AI agents.

ENTIA provides verified entity data across 34 countries — accessible via Model Context Protocol (MCP) or REST API.

MetricValue
Verified entities5.5M+
Countries34
BORME mercantile acts40.3M
Healthcare professionals570K+
MCP tools20
REST endpoints4

Quick Start (< 2 minutes)

Option 1: Remote MCP Server (recommended)

No installation needed. Connect your MCP client directly:

Claude Desktop — add to claude_desktop_config.json:

{
  "mcpServers": {
    "entia": {
      "command": "npx",
      "args": ["mcp-remote", "https://entia.systems/mcp/"]
    }
  }
}

Cursor IDE — add to .cursor/mcp.json:

{
  "mcpServers": {
    "entia": {
      "command": "npx",
      "args": ["mcp-remote", "https://entia.systems/mcp/"]
    }
  }
}

Then try:

Look up Telefonica in Spain

Option 2: REST API

# Search entities
curl "https://entia.systems/v1/search?q=telefonica&country=ES&limit=5" \
  -H "X-ENTIA-Key: YOUR_API_KEY"

# Full entity profile (BORME + GLEIF + VIES + Wikidata)
curl "https://entia.systems/v1/profile/Telefonica?country=ES"

# EU VAT verification
curl "https://entia.systems/v1/verify/vat/ESA28015865"

# Platform stats
curl "https://entia.systems/v1/stats"

Option 3: Python Client

pip install entia-mcp
from entia_mcp import EntiaClient

client = EntiaClient(api_key="entia_live_...")

# Search
results = client.search("dental clinic", country="ES", limit=5)

# Profile
profile = client.profile("Telefonica", country="ES")
print(profile["trust_score"])  # {"score": 84, "badge": "PARTIAL"}

# VAT verification
vat = client.verify_vat("ESA28015865")
print(vat["valid"])  # True

Option 4: LangChain Integration

from entia_mcp.langchain import build_entia_tools

tools = build_entia_tools()
# Returns: [entia_search, entia_profile, entia_health]
# Ready for create_tool_calling_agent()

20 MCP Tools

ToolWhat it does
entity_lookupFull entity dossier from 5.5M verified entities
search_entitiesBrowse registry by name, sector, city, country
borme_lookup40.3M Spanish mercantile acts (2009-2026)
borme_new_constitutionsNewly formed companies feed
borme_officer_changesDirector appointments/removals (KYC/KYB)
verify_healthcare_professional523K professionals (REPS)
verify_dentist44K colegiados (Consejo General Dentistas)
verify_psychologistColegiados (COP)
search_regcess120K healthcare centers
verify_vatEU VAT via VIES (27 member states)
zone_profileSocioeconomic data by postal code (INE/SEPE/AEAT)
get_competitorsCompetitors in same sector and location
municipality_profilePopulation + CNAE distribution
get_platform_statsRegistry size and data coverage
+ 6 moreHealthcare, economic intelligence

Pricing

TierPriceRequestsOverage
FreeEUR 020/dayHard block
ProEUR 199/month1,000/monthEUR 0.15/req
ScaleEUR 990/month10,000/monthEUR 0.10/req
EnterpriseEUR 2,500/month100,000/monthEUR 0.05/req

Get your API key: entia.systems/get-started

Data Sources

All data comes from official public registries:

  • BORME -- Spanish Mercantile Registry (BOE)
  • VIES -- EU VAT validation (European Commission)
  • GLEIF -- Legal Entity Identifiers (Global LEI Foundation)
  • Wikidata -- Knowledge Graph (Wikimedia Foundation)
  • REPS -- Spanish Healthcare Professionals Registry
  • INE -- Spanish National Statistics Institute
  • SEPE -- Spanish Employment Service
  • AEAT -- Spanish Tax Authority
  • Companies House -- UK company registry
  • Sirene/INSEE -- French company registry

Links

About

Built by PrecisionAI Marketing OU (Estonia, EU).

  • VAT: EE102780516
  • DUNS: 565868914
  • e-Residency certified
  • eIDAS compliant

License

Proprietary. See Terms of Service.

Reviews

No reviews yet

Sign in to write a review