Back to Browse

Entyrix MCP Server

Developer ToolsModerate5.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

KYB data from 16+ European business registries — search, financials, compliance, network graphs

About

KYB data from 16+ European business registries — search, financials, compliance, network graphs

Security Report

5.2
Moderate5.2Moderate Risk

This is a well-engineered MCP server for the Entyrix business-registry API with strong security practices. Authentication is required via API key (enforced at client instantiation), credentials are properly handled via environment variables, and input validation is thorough. The codebase demonstrates sophisticated error handling, comprehensive testing including contract verification against the live API, and careful attention to a known data-loss failure mode (silently dropped query filters). Minor code quality observations and informational findings do not materially impact security posture. Supply chain analysis found 6 known vulnerabilities in dependencies (0 critical, 1 high severity). Package verification found 1 issue.

7 files analyzed · 12 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

Bearer token from https://entyrix.comRequired

Environment variable: ENTYRIX_API_KEY

Override base URL (default https://entyrix.com)Optional

Environment variable: ENTYRIX_BASE_URL

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-juliusgerman-entyrix-mcp": {
      "env": {
        "ENTYRIX_API_KEY": "your-entyrix-api-key-here",
        "ENTYRIX_BASE_URL": "your-entyrix-base-url-here"
      },
      "args": [
        "-y",
        "@entyrix/mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

@entyrix/mcp

npm

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 SK, CZ, AT, EE, SI, LV, UK and more (16+ jurisdictions, growing).

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

ToolDescription
search_companiesFuzzy/typo-tolerant name search (server-side 26-62 ms cold, ~1 ms cached; measured 2026-08-11)
lookup_companyResolve a company by national registry ID, country-aware (SK/CZ/AT/EE/SI/LV/…)
get_company_detailsFull profile: financials, tech stack, security, NIS2, sanctions, credit grade
get_company_networkShared-officer graph — related entities via common directors/officers
get_company_relationsDirectors, UBO / beneficial owners, M&A and succession links
advanced_search57-key filter search (country, NACE, turnover, credit grade, NIS2, sanctions, tech, …)
check_complianceAML / sanctions / debtor lists / RPVS check (SK)
get_financialsLast N years of turnover, profit, EBITDA, ROA, ROE
find_suppliersPublic-sector contracts where company is supplier (SK CRZ)
list_rankingsPre-computed leaderboards (top turnover, top employers, …)

Configuration

Env varDefaultDescription
ENTYRIX_API_KEY(required)Bearer token from your Entyrix dashboard
ENTYRIX_BASE_URLhttps://entyrix.comOverride for staging / self-hosted
ENTYRIX_TIMEOUT_MS30000HTTP 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

Every PR must pass:

npm run format
npm run lint
npx tsc --noEmit
npm test

License

MIT — see LICENSE.

Reviews

No reviews yet

Be the first to review this server!