Potarix enricher
OfficialProvides tools for payment management, including generating a Stripe checkout URL to add a card and charging a saved card to top up credits.
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 |
| company name → website URL | 2 credits |
| named person + company/domain → verified email | 25 credits |
| category + domain → likely buyer name + email | 25 credits |
| LinkedIn profile URL → verified email | 10 credits |
| domain → public company contact roster | 25 credits |
| one company name → website + DMs + full company email list | sum of above |
| credits, email, saved-card status, key count | free |
| get a Stripe URL to add a card the first time | n/a |
| 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) |
| remote agents (Claude, ChatGPT) — no install |
stdio (npm package) |
| 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-mcpOr run it without a global install:
npx -y potarix-mcpConfigure
Set your Potarix API key:
export POTARIX_API_KEY=ptk_live_your_keyOptional:
export POTARIX_API=https://api.potarix.com/enricherClaude 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-mcpThen 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:httpEnvironment variables:
var | default | purpose |
| — | API key (stdio only; HTTP reads it per-request from the bearer header) |
|
|
|
|
| HTTP bind address |
|
| HTTP request path |
| — | comma-separated host allow-list; enables DNS-rebinding protection |
|
| API base URL override |
Registry Publishing
This repo includes server.json for the official MCP Registry.
Publishing steps:
npm publish
mcp-publisher login github
mcp-publisher publishThe package mcpName in package.json must match server.json:
io.github.Potarix/potarix-mcpResources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Potarix/potarix-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server