bizmachine-mcp
Click on "Deploy 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., "@bizmachine-mcpWhat's the profile of Alza.cz?"
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.
bizmachine-mcp
MCP server for BizMachine — Czech and Slovak company data API. Look up revenue, employees, financials, contacts, risk signals, engagement scores, ownership, NACE classification and more for any Czech or Slovak company by name, domain, or ICO.
Tools
Search & core
Tool | Description |
| Search companies by name or domain → ICO |
| Get full raw aggregated data by ICO |
| Smart lookup: name/domain → best match → structured data with revenue |
| Batch lookup for multiple companies |
Company profile & areas
Every tool below accepts either an ico or a query (name/domain, auto-resolved CZ→SK):
Tool | Description |
| Rich connector-style profile: identity, address, classification, size, financials, scores, contacts, risk, signal counts — in one call |
| Phone, email, website, LinkedIn, Facebook, Twitter |
| Revenue, growth, EBIT, EBITDA, margins, assets, registered capital, personnel cost, exporter/importer |
| Risk signals (insolvency, liquidation, executions, tax arrears) + health status |
| All available BizMachine metrics, normalized |
| Engagement scores (activity, growth, reachability) with top weighted drivers |
| NACE industry classification (primary + secondary) |
| Subsidiaries / held stakes (downward ownership graph) |
Related MCP server: cz-agents-mcp
Setup
1. Get API Key
Sign up at bizmachine.com and get your API key.
2. Install
git clone https://github.com/davidsimoes/bizmachine-mcp.git
cd bizmachine-mcp
npm install3. Configure Claude Code
Add to your ~/.claude/settings.local.json:
{
"mcpServers": {
"bizmachine": {
"command": "node",
"args": ["/path/to/bizmachine-mcp/index.mjs"],
"env": {
"BIZMACHINE_API_KEY": "your_key"
}
}
}
}Usage
Once registered, Claude gets these tools automatically:
# Quick lookup by domain or name
mcp__bizmachine__lookup("mixit.cz")
mcp__bizmachine__lookup("Košík")
# Batch lookup
mcp__bizmachine__bulk_lookup(["alza.cz", "rohlik.cz", "mixit.cz"])
# Rich, connector-style profile (by name/domain or ICO)
mcp__bizmachine__profile({ query: "alza.cz" })
mcp__bizmachine__profile({ ico: "27082440" })
# Focused areas (each accepts ico OR query)
mcp__bizmachine__contacts({ query: "alza.cz" }) # incl. LinkedIn
mcp__bizmachine__financials({ ico: "27082440" })
mcp__bizmachine__risks({ query: "Sberbank" }) # liquidation, insolvency…
mcp__bizmachine__indicators({ query: "rohlik.cz" }) # engagement scores
mcp__bizmachine__nace({ ico: "24836451" })
mcp__bizmachine__owned_companies({ ico: "27082440" })
mcp__bizmachine__metrics({ query: "mixit.cz" })
# Raw search / full data
mcp__bizmachine__suggest("alza")
mcp__bizmachine__company("27082440")Features
Smart domain matching: When given a domain, queries the API and matches results by website URL, then falls back to name matching
One composite call:
profileand the area tools all read BizMachine'saggregated-dataendpoint, so a single fetch (cached) powers identity, financials, contacts, risk, scores and classificationRevenue extraction: Handles both exact values and range estimates (midpoint)
Name normalization: Strips Czech legal suffixes (s.r.o., a.s., etc.) and diacritics for fuzzy matching
CZ + SK with auto-fallback: Query tools try the Czech database first, then Slovak
30-day file cache: Results cached in
~/.cache/bizmachine/to avoid redundant API callsRate limiting: 150ms between API calls
API plan tiers
The data each tool can return depends on your BizMachine API plan. The tools above are built on the endpoints available to a standard data key (suggest, aggregated-data, indicators, owned-companies). Some BizMachine datasets — detailed financial statements (line items), individual vehicle/fleet records, public-tender and job-posting listings, subsidies, and individual-person contacts — require a higher plan tier and are exposed by BizMachine as separate endpoints. Where only summary/count-level data is available on the standard tier (e.g. fleet size, open-job count, e-shop count), it is surfaced via metrics and profile.signals.
Development
Pure data-shaping logic lives in lib/extract.mjs (no I/O), the API client in
lib/api.mjs, and MCP wiring in index.mjs. Run the unit tests (no API key
needed — they exercise the pure helpers):
npm testLicense
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Czech & EU due diligence in one call — facts, insolvency, sanctions, VAT, risk score, UBO chain.
Czech ARES company registry: VAT, insolvency, RÚIAN addresses, IČO/DIČ checks. All free, no auth.
Company enrichment for AI agents: firmographics, tech stack, headcount, funding, domain emails.
Nordic company intelligence: look up companies, AI summaries, scores and signals via MCP.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides access to the Czech ARES business registry API, enabling search and retrieval of official information about Czech companies, validation of IČO numbers, and filtering by various criteria like legal form, industry codes, and location.2MIT
- AlicenseAqualityCmaintenanceMCP servers for Czech government & business data: ARES (Business Register) + ČNB (FX rates). Native AI access to company lookups, VAT status, bank accounts, currency conversion.96MIT
- FlicenseNot gradedqualityDmaintenanceProvides access to Poland's largest business registry database, enabling company search, beneficiary checks, and financial document retrieval via natural language.1-
- AlicenseAqualityCmaintenanceLook up Polish companies from any AI assistant: registry data (KRS, REGON, CEIDG), VAT white list checks before payments, and financial statements of 4.4M businesses. Read-only tools backed by official public registers.4MIT