
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
northdata-mcp
Advanced tools
Connect the NorthData company-data API to Claude Desktop, Claude Code, Cursor, and other AI assistants.
The Model Context Protocol (MCP) standardizes how Large Language Models (LLMs) talk to external services like NorthData. This server exposes NorthData's suggest, search, company, person, publications, reference, and billing endpoints as MCP tools, with a built-in credit guard that prevents accidental high-cost calls. See the full list of tools.
Built on FastMCP v3. Uses stdio transport — the MCP client launches northdata-mcp as a subprocess.
Before running the server, skim the security considerations. NorthData costs real money per returned company, and MCP lets LLMs spend those credits autonomously. The credit guard mitigates this, but defence in depth matters.
pipx install northdata-mcp
This pulls in the sibling northdata-cli package automatically and exposes the northdata-mcp console script globally.
Alternative via uv:
uvx northdata-mcp --help
Obtain a key at https://www.northdata.com. You'll put it into the MCP client config in the next step.
Optional credit-guard overrides (set as env vars in the MCP client config):
| Env var | Default | Purpose |
|---|---|---|
NORTHDATA_APPROVAL_THRESHOLD | 25 | search limit above this requires approve_high_cost=true |
NORTHDATA_ABSOLUTE_MAX | 100 | Hard cap on search limit, flag-immune |
NORTHDATA_CREDIT_LOG | ~/.northdata/credits.jsonl | Local credit log path |
Add to ~/Library/Application Support/Claude/claude_desktop_config.json
(macOS) — adjust the path on Windows / Linux:
{
"mcpServers": {
"northdata": {
"command": "northdata-mcp",
"env": {
"NORTHDATA_API_KEY": "XXXX-XXXX"
}
}
}
}
Restart Claude Desktop. The NorthData tools will appear in the tool picker.
claude mcp add northdata --env NORTHDATA_API_KEY=XXXX-XXXX -- northdata-mcp
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"northdata": {
"command": "northdata-mcp",
"env": { "NORTHDATA_API_KEY": "XXXX-XXXX" }
}
}
}
Run northdata-mcp as a subprocess and speak MCP over stdio. The environment must contain NORTHDATA_API_KEY.
Note: this server is pre-1.0, expect minor breaking changes between versions.
Every tool is a thin wrapper around the equivalent northdata-cli command. Tools are tagged free (no credits spent) or billed (consumes NorthData credits). MCP annotations (readOnlyHint, openWorldHint) are set on every tool so well-behaved clients can surface them in the UI.
No NorthData credits are consumed by these tools.
suggest — Autocomplete company or person names. Cheap first step before spending a credit on company or person.billing — Current remote credit usage for the billing period (numberOfRequests, periodStart, periodEnd).reference_overview — API reference data: standards, countries, legal forms, events.reference_segment_codes — Complete segment-code list for a given standard (default NACE2025).local_credit_log — Credit log maintained locally by this server: total, per-month, per-entry breakdown.Every one of these spends NorthData credits. NorthData charges per returned company, not per request. The credit guard enforces a two-tier ceiling on search (see Credit guard). All billed tools accept dry_run=true to build and return the URL without spending credits.
search — Power search. Cost: up to limit credits. Filters: segment_codes, segment_standard, legal_forms, address, max_distance_km, countries, status, revenue_min/max, earnings_min/max, limit, pos, approve_high_cost.company — Full company profile (1 credit). Identify by register (e.g. HRB 123456/Muenchen) or by name + optional city. Toggles: owners, financials, representatives, extras, sheets, events.person — Person lookup (1 credit). Returns birth date and known roles. Takes first_name, last_name, optional city.publications — Publications lookup (1 credit). Useful for shareholder lists via source="Hrb".NorthData bills per returned company. A single search call with limit=100 costs up to 100 credits. This server enforces two tiers:
| Tier | Default | Override |
|---|---|---|
Approval threshold — limit above this requires approve_high_cost=true | 25 | NORTHDATA_APPROVAL_THRESHOLD |
Absolute maximum — hard cap, ignores approve_high_cost | 100 | NORTHDATA_ABSOLUTE_MAX (set explicitly by a human, never by an LLM) |
Every billed tool call is appended to the local credit log (JSON-lines). The local_credit_log tool surfaces it. The log is informational; billing remains the source of truth.
Use dry_run=true on any billed tool to inspect the request URL before spending anything.
Connecting a credit-consuming data source to an LLM carries real costs and real risks. A malicious or malformed prompt can cause an agent to burn credits, leak structured company data into an untrusted chat, or combine NorthData data with other tools in unintended ways.
suggest, reference_*, and billing are free. LLMs should call these before moving to company / person / publications.dry_run=true when experimenting with new search parameters or register identifiers.cd northdata-mcp
python -m venv .venv && source .venv/bin/activate
pip install -e "../northdata-cli" # local editable CLI
pip install -e ".[dev]"
pytest
Tests use FastMCP's in-memory transport — no subprocess, no network. The underlying NorthDataClient is injected via a mock factory backed by httpx.MockTransport.
northdata-cli — same tools, plain command-lineMIT. See LICENSE.
FAQs
MCP server exposing the NorthData CLI tools (via FastMCP v3).
We found that northdata-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.