npm @entyrix/mcpstdioMITupdated 8d ago
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).
¿Qué puedes hacer con entyrix mcp?
@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-mcp
Or run without installing:
export ENTYRIX_API_KEY=your-api-key-here
npx @entyrix/mcp
Get an API key at https://entyrix.com.
Tools
| 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, …) |
Configuration
| 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 |
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/mcp
Or 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 test
Local 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 runs
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.
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 tag
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.
License
MIT — see LICENSE.
Instalación
Añade entyrix mcp a tu cliente. Elige el que uses.
claude mcp add mcp -- npx -y @entyrix/mcpcodex mcp add mcp -- npx -y @entyrix/mcpamp mcp add mcp -- npx -y @entyrix/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@entyrix/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@entyrix/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp","command":"npx","args":["-y","@entyrix/mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@entyrix/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@entyrix/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@entyrix/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@entyrix/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@entyrix/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @entyrix/mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
10 herramientas
entyrix mcp expone 10 herramientas a un agente conectado.
- 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, …)
Puntuación
83 / 100
Excelente
- Documentación25/25
- Mantenimiento25/25
- Confianza13/20
- Capacidad8/15
- Instalación12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 1 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 10 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Historial de versiones
| Versiones | Publicada |
|---|---|
| 0.1.4Última | 12 ago 2026 |
| 0.1.3 | 12 ago 2026 |
| 0.1.2 | 12 ago 2026 |
| 0.1.1 | 11 ago 2026 |