Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
Potarix avatar

Potarix Enricher

  • Updated May 26, 2026
  • Potarix/potarix-mcp

Find company websites and verified business emails through the Potarix Enricher API.

About

Find company websites and verified business emails through the Potarix Enricher API. Exposes 9 MCP tools including io.github.Potarix/potarix-mcp, | tool | what it does | cost |, |---|---|---|, | `lookup_company_website` | company name → website URL | 2 credits |. Install via Claude Desktop, Cursor, or any MCP-compatible client using the upstream server manifest.

  • Find company websites and verified business emails through the Potarix Enricher API.
  • Configuration patterns for Potarix Enricher.
  • Evidence-backed steps from upstream documentation.
  • When-to-use criteria for Potarix Enricher versus alternatives.

Potarix Enricher by the numbers

  • Exposes 9 verified tools (MCP introspection)
  • Data as of Jul 9, 2026 (Skillselion catalog sync)
terminal
claude mcp add --transport http potarix-mcp https://api.potarix.com/mcp

Add your badge

Show developers this MCP server is listed on Skillselion. Paste this into your README.

Listed on Skillselion
TransportHTTP
AuthNone
Tools9
Last updatedMay 26, 2026
RepositoryPotarix/potarix-mcp

How do I connect Potarix Enricher to my MCP client?

Find company websites and verified business emails through the Potarix Enricher API.

Who is it for?

Teams wiring Potarix Enricher into Claude, Cursor, or custom agents for developer tools.

Skip if: Skip when you need a non-MCP SDK or hosted API without stdio/SSE transport.

What you get

Working Potarix Enricher MCP server with verified tool registration and client config.

  • Company website URLs tied to target accounts
  • Verified business email candidates for outreach lists
  • Agent-ready enrichment snippets for CRM or CSV export

By the numbers

  • [object Object]
At a glance

Potarix Enricher capabilities & compatibility

Capabilities
potarix enricher mcp tool registration · potarix enricher client configuration · potarix enricher agent workflow integration
Use cases
orchestration
Runs
Remote server
From the docs

What Potarix Enricher says it does

Find company websites and verified business emails through the Potarix Enricher API.
README.md
Find company websites and verified business emails through the Potarix Enricher API.
README.md

Tools 9

Public tool metadata - what this server can do for an agent.

lookup_company_website2 params

Find the best website URL for a company name. Uses Potarix Enricher API credits.

  • company_namestringrequiredCompany name, such as 'Stripe Inc.'.
  • contextstringOptional disambiguation hint, such as location or industry.
find_person_email5 params

Find a verified email for a named person at a company or domain. Uses Potarix Enricher API credits.

  • first_namestringFirst name, if known.
  • last_namestringLast name, if known.
  • full_namestringFull name, if first and last are not split.
  • domainstringCompany domain, such as 'stripe.com'.
  • company_namestringCompany name, used when a domain is not known.
find_decision_maker_email2 params

Find a likely decision maker and verified email for a domain. Uses Potarix Enricher API credits.

  • domainstringrequiredCompany domain, such as 'stripe.com'.
  • categorystringrequiredDecision maker category, such as 'ceo', 'sales', or 'operations'.
find_linkedin_email1 param

Find a verified email from a LinkedIn profile URL. Uses Potarix Enricher API credits.

  • linkedin_urlstringrequiredLinkedIn profile URL.
find_company_emails1 param

Find public company email contacts for a domain. Uses Potarix Enricher API credits.

  • domainstringrequiredCompany domain, such as 'stripe.com'.
find_all4 params

Kitchen-sink: resolve a company's website, find decision-maker emails for the categories you request, and pull the company-wide email roster — all in one call. Pricing is the sum of underlying sub-calls; see /find-all docs. Uses Potarix Enricher API credits.

  • company_namestringrequiredCompany name, such as 'Stripe Inc.'.
  • contextstringOptional disambiguation hint passed through to website resolution.
  • dm_categoriesarrayDecision-maker role categories (e.g. 'ceo', 'sales', 'operations'). Defaults to ceo + sales + operations. Capped at 6.
  • skip_company_emailsbooleanSkip the company-wide email scrape to save credits. Defaults to false.
check_balance

Show the calling key's profile: email, credits remaining, total purchased, whether a card is on file, and how many active API keys exist. Free — does not consume credits.

topup_credits1 param

Buy a credit pack. Charges the saved card off-session if one is on file (returns immediately on success). If no card is saved yet, run `start_checkout` first to capture one.

  • tier_keystringrequiredCredit pack: '1k' ($10), '5k' ($50), or '25k' ($250).
start_checkout1 param

Return a Stripe Checkout URL the human clicks once to add a card. After the human completes checkout, future `topup_credits` calls are silent off-session charges. Hand the returned `url` to the user, do not try to follow it yourself.

  • tier_keystringrequiredCredit pack to purchase on first checkout: '1k', '5k', or '25k'.
README.md

Potarix MCP Server

MCP wrapper for Potarix Enricher. Lets AI agents resolve company websites, find verified emails, and pull complete company rosters — and (with one human-in-the-loop card capture) sign up and pay for credits entirely from the agent.

Tools

tool what it does cost
lookup_company_website company name → website URL 2 credits
find_person_email named person + company/domain → verified email 25 credits
find_decision_maker_email category + domain → likely buyer name + email 25 credits
find_linkedin_email LinkedIn profile URL → verified email 10 credits
find_company_emails domain → public company contact roster 25 credits
find_all one company name → website + DMs + full company email list sum of above
check_balance credits, email, saved-card status, key count free
start_checkout get a Stripe URL to add a card the first time n/a
topup_credits charge the saved card and add credits n/a

1 credit = $0.01. Trial accounts start with 25 free credits. Every endpoint floors at the worst-case provider COGS — a hit never loses money, and short-circuited waterfall calls earn margin.

Two ways to connect

transport endpoint best for
Streamable HTTP (hosted) https://api.potarix.com/mcp remote agents (Claude, ChatGPT) — no install
stdio (npm package) npx -y potarix-mcp local/desktop clients

Both expose the same nine tools. The hosted server is stateless and multi-tenant: every request is authorized by its own Authorization: Bearer ptk_live_... header, so there is no per-user deployment.

Hosted (Streamable HTTP)

Point any MCP client that speaks Streamable HTTP at https://api.potarix.com/mcp and send your key as a bearer token:

{
  "mcpServers": {
    "potarix": {
      "url": "https://api.potarix.com/mcp",
      "headers": { "Authorization": "Bearer ptk_live_your_key" }
    }
  }
}

Install (stdio)

npm install -g potarix-mcp

Or run it without a global install:

npx -y potarix-mcp

Configure

Set your Potarix API key:

export POTARIX_API_KEY=ptk_live_your_key

Optional:

export POTARIX_API=https://api.potarix.com/enricher

Claude Desktop

{
  "mcpServers": {
    "potarix": {
      "command": "npx",
      "args": ["-y", "potarix-mcp"],
      "env": {
        "POTARIX_API_KEY": "ptk_live_your_key"
      }
    }
  }
}

Claude Code

claude mcp add potarix npx -- -y potarix-mcp

Then add POTARIX_API_KEY to the environment where Claude Code runs.

Development

npm install
npm run build
npm run smoke        # stdio transport: connect + tools/list

# Streamable HTTP transport:
npm run start:http   # serves on http://127.0.0.1:8080/mcp (set PORT to change)
# in another shell:
POTARIX_MCP_URL=http://127.0.0.1:8080/mcp npm run smoke:http

Environment variables:

var default purpose
POTARIX_API_KEY API key (stdio only; HTTP reads it per-request from the bearer header)
POTARIX_MCP_TRANSPORT stdio http to run the Streamable HTTP server (or pass --http)
PORT / HOST 8080 / 127.0.0.1 HTTP bind address
POTARIX_MCP_PATH /mcp HTTP request path
POTARIX_MCP_ALLOWED_HOSTS comma-separated host allow-list; enables DNS-rebinding protection
POTARIX_API https://api.potarix.com/enricher API base URL override

Registry Publishing

This repo includes server.json for the official MCP Registry. The entry is multi-surface: it declares both the hosted Streamable HTTP remote (https://api.potarix.com/mcp) and the npm stdio package (potarix-mcp), so a single registry record advertises two ways to connect.

The registry validates the npm package by fetching it and checking that its published mcpName matches the server name, so the npm package must be published first, at the same version named in server.json (packages[].version).

Publishing steps (version-bump first, then npm, then registry):

# 1. Bump package.json + server.json to the same new version (e.g. 0.1.3).
#    server.json must be a NEW version each publish (versions are immutable).
# 2. Build + publish the npm artifact (carries mcpName for ownership proof):
npm publish
# 3. Push the multi-surface server.json to the official MCP Registry:
mcp-publisher login github
mcp-publisher publish

The package mcpName in package.json must match server.json:

io.github.Potarix/potarix-mcp

Recommended MCP Servers

How it compares

B2B enricher MCP API, not a marketing automation platform or generic web search skill.

FAQ

What does Potarix Enricher do?

Find company websites and verified business emails through the Potarix Enricher API.

When should I use Potarix Enricher?

User asks about Potarix Enricher mcp, find company websites and verified business emails through the potarix.

Is this MCP server safe to install?

Review the Security Audits panel on this page before installing in production.

Developer Toolsintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.