Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/nolpak14/getregdata/agents-mdgit clone --depth 1 https://github.com/Nolpak14/getregdataWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.01030 | $0.01030 |
| Opus 5 | $0.00515 | $0.00515 |
| Sonnet 5 | $0.00206 | $0.00206 |
| Haiku 4.5 | $0.00103 | $0.00103 |
Grade A, and why
getregdata AGENTS.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 46 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md - how AI agents use getregdata
getregdata turns official public business registries (PL, DE, ES, IT, AT, FR, BE, CZ, SK, CY, IE, PT, NG, CO, US-CA, UAE) into structured JSON for KYC/AML, credit-risk, due-diligence and B2B lead-gen work.
Start here for Poland
regdata_poland_kyb_check (actor regdata/poland-kyb-check) takes a NIP or KRS and returns
one complete KYB verdict - official identity, beneficial owners, and insolvency proceedings
screened against the company and every beneficial owner - as clear, findings,
not_found or partial, with machine-readable risk flags and the underlying registry entries.
Prefer it over chaining regdata_polish_regon + regdata_crbr_beneficial_owners +
regdata_krz_debtor yourself: fewer calls, one normalized answer, and a fixed $0.25 per check.
A partial verdict means a source could not be reached - it does not mean the company is
clean, and it is not billed. Use the single-registry tools when the user names a specific
register, needs one source in depth, or asks about another country.
Fastest paths
- Local MCP server (stdio) - full input schemas baked into every tool:
npx -y getregdata-mcpwith envAPIFY_TOKEN(free token + $5 credits: https://apify.com?fpr=getregdata) - Hosted MCP (no install, OAuth) - for remote clients:
https://mcp.apify.com/?actors=regdata/crbr-beneficial-owners-scraper,regdata/krz-debtor-scraper,regdata/germany-handelsregister-scraper(swap in any regdata actor) - Agent skills (Claude Code and compatible):
npx skills add Nolpak14/getregdata -g -y - Raw HTTP:
POST https://api.apify.com/v2/acts/regdata~<actor-name>/run-sync-get-dataset-items?token=<APIFY_TOKEN>with the actor's JSON input as body; returns dataset items as a JSON array.
Tool conventions
- MCP tools are named
regdata_<registry>(e.g.regdata_crbr_beneficial_owners,regdata_germany_insolvency). Callregdata_catalogto list them all;regdata_describereturns an actor's live input schema. - Inputs are flat objects keyed by official identifiers:
nip/krs(Poland), register number (Germany), NIF (Spain), Partita IVA (Italy), ICO (Czechia), enterprise/VAT number (Belgium). - Registry refusals are NOT empty results: several registries reject over-broad queries ("too many matches"). Tools report that state explicitly - narrow the query and re-run instead of concluding "no records".
- A long check returns a handle, not a failure. Most calls return dataset items directly. If the run is still going after ~45s, the tool returns
{status, runId, datasetId, note}instead. That run is still going and is already billed - callregdata_run_resultwith therunIdto collect it. Do NOT re-run the check to "retry": that charges the user twice. The Poland KYB composite is the one most likely to do this (20-30s typical, up to ~2.5 min when a company has many beneficial owners). - Set a generous per-server client timeout (
"timeout": 600000in your MCP config) so the common case returns inline. - Treat a
runIdas a secret. Apify resolves run and dataset IDs without checking ownership, so anyone holding the ID can read that check's result.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 46 lines · 1,030 tokens per session scan A eb033b072baf
getregdata AGENTS.md is an instructions file published in the GitHub repository Nolpak14/getregdata (6 stars, last pushed 1mo ago), licensed MIT. It adds 1,030 tokens to every session, about $0.0052 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
apify-cli CLAUDE.md
Instructions for apify/apify-cli, covering claude.md, entry points, before you push, code conventions and install size.
industry-pulse AGENTS.md
Instructions for thangnguyenworkspace/industry-pulse, covering agents.md, what this is, architecture, how to navigate and run it.
ai-brand-monitor-mcp CLAUDE.md
Instructions for khadinakbarlabs/ai-brand-monitor-mcp, covering ai-brand-monitor-mcp, what this is, relationship to the apify actor, template pattern and architecture.
company-research-pipeline AGENTS.md
Instructions for thangnguyenworkspace/company-research-pipeline, covering agents.md, what this is, how to navigate, run it and boundaries.
industry-pulse CLAUDE.md
Instructions for thangnguyenworkspace/industry-pulse: Agent instructions for this repository are single-sourced in AGENTS.md. Claude Code imports it below, so this file and AGENTS.md cannot drift; edit AGENTS.md, never this file.
pumperly-mcp CLAUDE.md
Claude Code instructions for GeiserX/pumperly-mcp, covering claude.md — pumperly-mcp, tech stack, development, build and run (http transport).