Model Context Protocol · Norway
This page is in English. Les om MCP-serveren på norsk →
Search Norwegian companies and decision makers from inside Claude
Mynk exposes a remote MCP server at https://api.mynk.no/mcp so AI tools — claude.ai, Claude Code, Cursor, VS Code — can search 500K+ Norwegian companies and people, and reveal verified contact details, directly from a chat session. No separate app, no manual export, no copy-pasting between tabs.
What the Mynk MCP server does
The server gives an AI model eight tools for Norwegian B2B sales intelligence and prospecting: company search, exhaustive deep search, company profiles, employee and decision-maker lookups, people search, and credit-gated contact reveal.
| Tool | What it does |
|---|---|
| search_companies | Fast natural-language search across Norwegian companies. Returns a vat_number (org number) per company. ~15–30s fresh, instant when cached. |
| start_deep_search | Exhaustive search covering every match, not just the top candidates — same coverage as the Mynk web app. Runs as a background job. |
| get_search_results | Poll a deep-search job and page through its complete result set, 25 at a time. |
| get_company_profile | Full company profile by org number: registry data plus AI-enriched fields (summary, is_b2b/is_b2c, who they serve, what they sell). |
| get_company_employees | List known employees and roles at a company, with an optional natural-language role filter like "decision makers" or "CTO". |
| search_people | Search people across all Norwegian companies by keywords, location, or current employer. |
| get_person_profile | A person's profile by ID: role, seniority, department, employer, LinkedIn. |
| reveal_contact | Reveals a person's verified work email and phone number. Spends workspace credits — a separate, explicit tool so a model never invokes it speculatively. |
Example questions you can ask
Once connected, you talk to it in plain language inside your normal Claude session — no query syntax to learn.
- “Find accounting firms in Bergen with more than 10 employees”
- “Search for IT security companies in Oslo and show me their revenue and employee count”
- “Who are the decision makers at [company name]?”
- “Find the CFO at every SaaS company in Trondheim and get their contact details”
- “Give me every marketing leader in Norwegian companies located in Bergen”
- “Do a full search for all IT services companies in Norway, not just the top matches”
How to connect
MCP access is available on the Pro plan. Every connection method needs a credential: either a static API key, or OAuth for claude.ai's connector flow.
1. Create an API key
In the Mynk dashboard: Settings → API Keys (Pro plan). Name the key, click Create — the full key (mynk_...) is shown once, so copy it immediately. Up to 5 active keys per user; revoking one stops it working within seconds.
2. claude.ai (custom connector)
No API key needed here — claude.ai authenticates via OAuth automatically. Settings → Connectors → Add custom connector, name it Mynk, URL https://api.mynk.no/mcp, leave Client ID/Secret empty, click Add. Log in with your Mynk account and approve when prompted. Requires a Pro workspace.
Claude Code
claude mcp add --transport http mynk https://api.mynk.no/mcp \
--header "Authorization: Bearer mynk_..."Other HTTP-capable MCP clients (Cursor, VS Code, etc.)
Point the client at the same URL and header — transport is streamable HTTP.
URL: https://api.mynk.no/mcp
Transport: streamable HTTP
Header: Authorization: Bearer mynk_...A typical chat flow
vat_number is the Norwegian organisasjonsnummer (org number) that chains companies, profiles and employees together.
search_companies("accounting firms in Bergen with more than 10 employees")
→ pick a company, grab its vat_number
get_company_profile(vat_number)
get_company_employees(vat_number, role="decision makers")
→ pick a person, grab their id
reveal_contact(person_id) # only when you explicitly want contact infoFor broad queries where you need every match, not just the most relevant ones, use the deep-search job instead of the fast search:
start_deep_search("IT services companies") → job_id
get_search_results(job_id) → status: running
... wait 20-30s, poll again ...
get_search_results(job_id) → status: completed, total: 3570, first 25
get_search_results(job_id, offset=25) → next pageSecurity and access control
OAuth 2.1 with mandatory PKCE (S256) for claude.ai connectors — public clients only, no client secrets.
Every request needs a valid bearer credential (API key or OAuth token) tied to an active, non-expired, Pro-plan workspace.
Contact details are only revealed via the explicit reveal_contact tool and spend workspace credits — never surfaced speculatively.
Rate-limited per credential to keep the API stable for everyone.
MCP Server FAQ
- A remote Model Context Protocol (MCP) server at https://api.mynk.no/mcp that lets AI tools like Claude search Norway's company and people database directly inside a chat session — no separate app, no copy-pasting between tools.
- Any MCP client that supports streamable HTTP: claude.ai (via a custom connector), Claude Code, Cursor, VS Code, and others. ChatGPT support is not confirmed today.
- Yes. MCP access is a Pro-plan feature, gated the same way as the rest of Mynk's API access. See the pricing page for current rates.
- No. Contact details (email/phone) are only revealed when reveal_contact is explicitly called, and already-revealed contacts are returned free without a second charge. Search results are trimmed to a public field whitelist before they ever reach the model.