entyrix-mcp
This server provides LLM clients with tools to search, look up, and analyze companies across 16+ European jurisdictions (SK, CZ, AT, EE, SI, LV, UK, and more) via the Entyrix API (requires an API key). Core capabilities:
Search & Discovery:
search_companies: Fuzzy name, address, or national ID (IČO) search with typo tolerance.advanced_search: Structured search using 57+ filters (country, NACE, turnover, profit, employee count, credit grade, NIS2, sanctions, tech stack, EU funds, etc.).list_rankings: Pre-computed leaderboards (top by turnover, public contracts, most-registered addresses, most-viewed).
Company Identity & Details:
lookup_company: Resolve by national registry ID (e.g., IČO, Firmenbuch) with country disambiguation.get_company_details: Full profile – financials, tech stack, SSL/CVE findings, NIS2 scope, sanctions, credit score/grade, address, legal form, status.
Relations & Network:
get_company_network: Shared-officer graph for multi-hop discovery of connected companies.get_company_relations: Directors, UBOs/beneficial owners, shareholders, related companies, M&A/succession events.
Financial & Compliance:
get_financials: Up to 20 years of annual statements (turnover, profit, EBITDA, ROA, ROE, assets, equity) in EUR.check_compliance: AML/sanctions screening, debtor lists (SocPoist/VšZP/tax), insolvency/bankruptcy/liquidation status, RPVS transparency (SK).find_suppliers: List Slovak public-sector (CRZ) contracts (value, buyer, dates, CPV).
Use Cases: KYB/KYC onboarding, AML screening, supplier due diligence, risk monitoring, and market research.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@entyrix-mcpSearch for companies named 'Solar' in Czech Republic"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@entyrix/mcp
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).
30-second quickstart
npm install -g @entyrix/mcp
export ENTYRIX_API_KEY=your-api-key-here
entyrix-mcpOr run without installing:
export ENTYRIX_API_KEY=your-api-key-here
npx @entyrix/mcpGet an API key at https://entyrix.com.
Related MCP server: eu-company-mcp-server
Tools
Tool | Description |
| Fuzzy/typo-tolerant name search (server-side 26-62 ms cold, ~1 ms cached; measured 2026-08-11) |
| Resolve a company by national registry ID, country-aware (SK/CZ/AT/EE/SI/LV/…) |
| Full profile: financials, tech stack, security, NIS2, sanctions, credit grade |
| Shared-officer graph — related entities via common directors/officers |
| Directors, UBO / beneficial owners, M&A and succession links |
| 57-key filter search (country, NACE, turnover, credit grade, NIS2, sanctions, tech, …) |
| AML / sanctions / debtor lists / RPVS check (SK) |
| Last N years of turnover, profit, EBITDA, ROA, ROE |
| Public-sector contracts where company is supplier (SK CRZ) |
| Pre-computed leaderboards (top turnover, top employers, …) |
Configuration
Env var | Default | Description |
| (required) | Bearer token from your Entyrix dashboard |
|
| Override for staging / self-hosted |
|
| HTTP timeout per request |
Client setup
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"entyrix": {
"command": "npx",
"args": ["-y", "@entyrix/mcp"],
"env": {
"ENTYRIX_API_KEY": "your-api-key-here"
}
}
}
}Restart Claude Desktop. The 10 tools appear in the tools panel.
Claude Code
Register the server from any project (writes to ~/.claude.json):
claude mcp add entyrix --env ENTYRIX_API_KEY=your-api-key-here -- npx -y @entyrix/mcpOr add it manually to .mcp.json in your project root (checked in) / ~/.claude.json (global):
{
"mcpServers": {
"entyrix": {
"command": "npx",
"args": ["-y", "@entyrix/mcp"],
"env": {
"ENTYRIX_API_KEY": "your-api-key-here"
}
}
}
}Cursor
Edit .cursor/mcp.json in your workspace (or ~/.cursor/mcp.json for global):
{
"mcpServers": {
"entyrix": {
"command": "npx",
"args": ["-y", "@entyrix/mcp"],
"env": {
"ENTYRIX_API_KEY": "your-api-key-here"
}
}
}
}ChatGPT
ChatGPT does not consume MCP stdio servers directly today. Two integration paths:
1. Custom GPT Actions — expose Entyrix endpoints as OpenAPI actions. Sketch:
openapi: 3.1.0
info:
title: Entyrix
version: 0.1.0
servers:
- url: https://entyrix.com/api/v1
paths:
/companies/autocomplete:
get:
operationId: searchCompanies
parameters:
- name: q
in: query
required: true
schema: { type: string }
- name: country
in: query
schema: { type: string, minLength: 2, maxLength: 2 }
responses:
"200": { description: OK }
/companies/{country}/{national_id}:
get:
operationId: lookupCompany
parameters:
- { name: country, in: path, required: true, schema: { type: string } }
- { name: national_id, in: path, required: true, schema: { type: string } }
responses:
"200": { description: OK }
components:
securitySchemes:
BearerAuth:
type: http
scheme: bearer
security:
- BearerAuth: []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.
Development
git clone <repo>
cd entyrix-mcp
npm install
npm run build
npm testLocal stdio sanity-check (requires a real API key):
ENTYRIX_API_KEY=your-key node dist/index.js
# (stdin/stdout speaks MCP — wire it to a client to actually issue calls)Quality gates
npm run check # format:check + lint + typecheck + test — the same four CI runsRun 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.
Releasing
npm run bump 0.1.5 # writes all four manifests, refuses on drift
npm run check
git commit -am "chore(release): 0.1.5"
git tag v0.1.5
git push && git push --tags # one push, then the tagThe 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.
License
MIT — see LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceMCP server for Nordic company registries. Verify companies, check board members, signing authority, and financial data across Norway, Denmark, Finland, and Sweden using official public APIs. 23 tools covering search, details, roles, and batch lookups.198Apache 2.0
- AlicenseAqualityDmaintenanceMCP server for EU company and business data. 9 tools: company search (GLEIF, 2M+ entities), LEI lookup, corporate structures (parent/subsidiaries), trade register search, EU VAT validation (VIES), GDP, unemployment, inflation, and business demography (Eurostat). All APIs free, no keys required.94MIT
- FlicenseAqualityDmaintenanceAn MCP server that gives AI agents access to US business entity data, enabling searches across 9 state registries, SEC EDGAR filings, federal contracts, and lobbying disclosures.61
- FlicenseNot gradedqualityCmaintenanceA local MCP server that exposes the UK Companies House API as tools for Claude Desktop and Cowork, enabling company search, profile retrieval, officer lookup, and document downloads.
Related MCP Connectors
Remote MCP server to enrich company profiles with structured B2B data and confidence scores.
Companies House MCP — UK statutory company registry (BYO key)
MCP server exposing the Backtest360 engine API as tools for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/juliusgerman/entyrix-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server