The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Entyrix MCP listing page.
Model Context Protocol (MCP) server for the Entyrix European business-registry (KYB) API. Exposes 10 stdio tools so LLM clients (Claude Desktop, Claude Code, Cursor, ChatGPT) can search, look up, and analyze companies across 23 live markets (FR, GB, RO, SK, UA, GR, CZ, BE, NO, IE, FI, CH, PL, AT, CY, LT, LV, EE, SI, ES, IT, NL, HR).
Or run without installing:
Get an API key at https://entyrix.com.
| Tool | Description |
|---|---|
search_companies | Fuzzy/typo-tolerant name search (server-side 26-62 ms cold, ~1 ms cached; measured 2026-08-11) |
lookup_company | Resolve a company by national registry ID, country-aware (SK/CZ/AT/EE/SI/LV/…) |
get_company_details | Full profile: financials, tech stack, security, NIS2, sanctions, credit grade |
get_company_network | Shared-officer graph — related entities via common directors/officers |
get_company_relations | Directors, UBO / beneficial owners, M&A and succession links |
advanced_search | 57-key filter search (country, NACE, turnover, credit grade, NIS2, sanctions, tech, …) |
check_compliance | AML / sanctions / debtor lists / RPVS check (SK) |
get_financials | Last N years of turnover, profit, EBITDA, ROA, ROE |
find_suppliers | Public-sector contracts where company is supplier (SK CRZ) |
list_rankings | Pre-computed leaderboards (top turnover, top employers, …) |
| Env var | Default | Description |
|---|---|---|
ENTYRIX_API_KEY | (required) | Bearer token from your Entyrix dashboard |
ENTYRIX_BASE_URL | https://entyrix.com | Override for staging / self-hosted |
ENTYRIX_TIMEOUT_MS | 30000 | HTTP timeout per request |
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
Restart Claude Desktop. The 10 tools appear in the tools panel.
Register the server from any project (writes to ~/.claude.json):
Or add it manually to .mcp.json in your project root (checked in) / ~/.claude.json (global):
Edit .cursor/mcp.json in your workspace (or ~/.cursor/mcp.json for global):
ChatGPT does not consume MCP stdio servers directly today. Two integration paths:
1. Custom GPT Actions — expose Entyrix endpoints as OpenAPI actions. Sketch:
Paste this into the Custom GPT builder, set the auth header, and the Entyrix endpoints become first-class GPT actions.
2. Connectors API (enterprise) — <https://platform.openai.com/docs/connectors> accepts MCP servers behind an HTTP wrapper; a small HTTP-to-stdio adapter is on the roadmap.
Local stdio sanity-check (requires a real API key):
Run check, not the four by hand. On 2026-08-12 a release was cut after
lint + typecheck + test passed and CI went red on format:check — the one
step that got skipped because it was being remembered rather than scripted.
The version lives in four files and src/lib/__tests__/version.test.ts asserts
they agree; bump is what keeps that guard from firing on every release. Push
once — each push is a full CI run, and a release cut as four separate pushes
bills four of them (plus two red ones for the intermediate states).
npm publish runs from the tag via OIDC trusted publishing, so no token is
involved. npm versions are immutable: a bad publish cannot be recalled, only
superseded — which is why the tag is checked against package.json before
anything is published.
MIT — see LICENSE.