Kiprio MCP
The Kiprio MCP server provides 23 production-ready API tools covering email validation, network/DNS diagnostics, web scraping, NLP, and developer utilities — usable directly from Claude, Cursor, Cline, and other MCP clients without third-party API keys.
Email & Validation
validate_email— Check deliverability via syntax, MX records, and disposable/role-address detectionvalidate_vat— Validate EU VAT numbers via VIES and retrieve registered company name/addressvalidate_iban— Validate IBANs and decode bank/account components for 80+ countriescheck_password_breach— Check if a password appears in breach databases using k-anonymity (only a 5-char SHA-1 prefix is sent)
Network & DNS
dns_lookup— Query A, AAAA, MX, TXT, NS, CNAME, and SOA records for any domainwhois_lookup— Retrieve domain registration info including registrar, creation/expiry dates, and nameserversssl_check— Inspect SSL/TLS certificates for validity, expiry, issuer, SANs, and chain lengthip_lookup— Geolocate an IP and detect VPN, Tor, or datacenter usage with a threat score
Web & Content
readability— Extract clean article text and metadata from any URL using Mozilla's Readability algorithmtech_stack— Detect CMS, frameworks, CDNs, analytics, and payment providers used by a websiteparse_og_tags— Extract Open Graph, Twitter Card, and standard meta tags from a URLscreenshot_url— Capture full-page or viewport screenshots as base64-encoded PNGshtml_to_pdf— Convert HTML documents to PDFs (base64-encoded) using headless Chromium
Text Processing
sentiment_analysis— Classify text as positive/negative/neutral with a compound score (−1 to +1)check_grammar— Rewrite text for grammar/spelling/style with modes like concise, formal, friendly, UK/US-entranslate_text— Translate between 100+ languages with auto source-language detectionsummarize_text— Summarize long documents into configurable key-point summariesredact_text— Replace PII (emails, phones, names, card numbers, etc.) with[REDACTED_TYPE]placeholders
Developer Utilities
generate_qr— Generate QR codes as base64 PNG or SVG with custom colors and sizegenerate_hash— Hash strings with sha256, sha512, sha1, md5, sha3_256, or blake2bgenerate_uuid— Generate UUID v1, v4, or v7parse_cron— Parse cron expressions into plain-English descriptions and next 5 run timesdecode_jwt— Decode JWT header/payload and check expiry status (no signature verification)
kiprio MCP Server
27 production API tools for Claude Code, Claude Desktop, Cursor, Cline, Continue, and any MCP client — email/phone validation, geocoding, timezone conversion, DNS/WHOIS, SSL inspection, web scraping, NLP, and developer utilities.
No third-party API keys required. Free tier included. Powered by kiprio.com.
Quick install
No install needed — run it straight from PyPI with uv:
uvx kiprio-mcpOr install with pip:
pip install kiprio-mcpClaude Code — add to your project in one step:
claude mcp add kiprio -- uvx kiprio-mcp
# or, if installed via pip:
claude mcp add kiprio -- kiprio-mcpOr add to ~/.claude.json / Claude Desktop / Cursor / Windsurf / Zed:
{
"mcpServers": {
"kiprio": {
"command": "uvx",
"args": ["kiprio-mcp"],
"env": {"KIPRIO_API_KEY": "your_key_here"}
}
}
}(If you installed via pip instead, use "command": "kiprio-mcp" with no args.)
Cline (VS Code) — open Cline → MCP Servers → Add Server → paste:
{
"mcpServers": {
"kiprio": {
"command": "uvx",
"args": ["kiprio-mcp"],
"env": {"KIPRIO_API_KEY": "your_key_here"}
}
}
}Continue.dev — add to ~/.continue/config.json under mcpServers:
{
"mcpServers": [
{
"name": "kiprio",
"command": "uvx",
"args": ["kiprio-mcp"],
"env": {"KIPRIO_API_KEY": "your_key_here"}
}
]
}Get your free API key (takes 30 seconds)
The anonymous tier is rate-limited to 50–100 requests/day per tool — fine for one-off queries, but it runs out fast in any automated workflow.
A free registered key gives you 100 req/day per tool at zero cost:
👉 kiprio.com/signup — no credit card, no trial period.
Related MCP server: contrastapi
What you can do
Once connected, ask Claude naturally:
"Is noreply@company.io a real deliverable address?" →
validate_emailchecks syntax, MX records, and disposable domain lists
"What tech stack is stripe.com running?" →
tech_stackreturns CMS, CDN, analytics, and payment providers
"Take a screenshot of this landing page and flag any broken layout." →
screenshot_urlreturns a base64 PNG Claude can analyse directly
"Redact all PII from this support transcript before I send it to Zendesk." →
redact_textreplaces emails, phones, names, and card numbers with[REDACTED_TYPE]
"Check the SSL certificate on api.example.com — is it expiring soon?" →
ssl_checkreturns expiry date, issuer, and grade
Building an automated agent?
kiprio tools are designed for pipelines and hooks, not just one-shot queries. Common patterns:
Email validation before accepting signups:
User submits email
→ Claude: validate_email("user@example.com")
→ If disposable/invalid → reject early, before DB writeDomain monitoring hook (Claude Code slash command):
# Add to CLAUDE.md as a custom slash command
/check-ssl → ssl_check on all domains in config/domains.txtLead enrichment agent:
CSV of company domains
→ Claude loops: tech_stack() + whois_lookup() + ip_lookup() per row
→ Output: enriched CSV with stack, registrar, country, hosting providerContent moderation pipeline:
User-submitted text
→ sentiment_analysis() to flag negative
→ redact_text() to strip PII before loggingThese patterns work within the free key tier (100 req/day per tool). Pro tier (1,000/day) handles larger batches.
Tools
Email & Validation
Tool | What it does |
| Syntax + MX record check + disposable domain detection |
| International phone number validation, E.164 format + country info |
| EU VAT number validation via VIES, returns company name |
| IBAN validation + bank details |
| k-anonymity breach check — only a 5-char SHA1 prefix is sent |
Location & Time
Tool | What it does |
| Convert address or place name → lat/lon + structured address components |
| City → IANA timezone, UTC offset, current local time, DST details |
| Convert a datetime between any two IANA timezones (no key required) |
Network & DNS
Tool | What it does |
| Query A, AAAA, MX, TXT, NS, CNAME, SOA records |
| Domain registrar, creation/expiry dates, nameservers |
| Certificate validity, expiry, issuer, SANs |
| Geolocation + VPN/Tor/datacenter detection with threat score |
Web & Content
Tool | What it does |
| Extract main article text and metadata from any URL |
| Detect CMS, framework, CDN, analytics, payments |
| Open Graph, Twitter Card, and meta tags from a URL |
| Full-page or viewport screenshot → base64 PNG |
| Convert HTML to PDF → base64 bytes |
Text Processing
Tool | What it does |
| positive/negative/neutral label + compound score (−1 to 1) |
| Rewrite for grammar/spelling + diff of edits; styles: concise, formal, friendly, UK-en, US-en |
| Translate between languages with auto source detection |
| Extract key points (configurable sentence count) |
| Replace PII with |
Developer Utilities
Tool | What it does |
| QR code → base64 PNG or SVG; custom colours and size |
| Hash string with sha256, sha512, sha1, md5, sha3_256, or blake2b |
| Generate UUID v1, v4, or v7 |
| Parse a cron expression → next 5 run times + human description |
| Decode JWT header + payload + expiry status (no verification) |
Rate limits
Tier | Limit | Cost |
Anonymous (no key) | 50–100 req/day/tool | $0 |
Free key | 100 req/day/tool | $0 — sign up |
Pro | 1,000 req/day/tool | $9/mo |
Business | 10,000 req/day/tool | $39/mo |
Free key vs anonymous: Same tools, 3× the headroom, still $0. Just needs an email address.
Get your free key at kiprio.com/signup →
When to upgrade to Pro
Batch processing — validating 500 emails, enriching a CSV, running a link audit
Scheduled agents — Claude Code hooks that fire on every commit or cron job
Team workspaces — multiple developers sharing one config
Production scripts — slash commands that run on every file save or PR
Upgrade to Pro at kiprio.com →
Claude Code setup
claude mcp add kiprio -- uvx kiprio-mcp
claude mcp list # should show kiprioOr with a pip install:
pip install kiprio-mcp
claude mcp add kiprio -- kiprio-mcpWith API key in your project .env:
echo "KIPRIO_API_KEY=your_key" >> .envThen reference in your MCP config:
{
"mcpServers": {
"kiprio": {
"command": "uvx",
"args": ["kiprio-mcp"],
"env": {"KIPRIO_API_KEY": "${KIPRIO_API_KEY}"}
}
}
}Troubleshooting
kiprio-mcp: command not found / spawn kiprio-mcp ENOENT — the bare kiprio-mcp command only exists after a pip install. Either switch your config to "command": "uvx", "args": ["kiprio-mcp"] (no install needed), or point at the full path from your virtualenv:
"command": "/path/to/venv/bin/kiprio-mcp"429 Rate limit exceeded — free anonymous tier hit. Register at kiprio.com/signup for 100 req/day free, or upgrade to Pro for 1,000/day.
401/403 errors — API key invalid. Leave KIPRIO_API_KEY empty to use the anonymous tier (30 req/day).
Source
github.com/ForeverTools/kiprio-mcp — MIT licence.
Maintained by ForeverTools. APIs powered by kiprio.com.
Maintenance
Related MCP Servers
- Alicense-qualityDmaintenanceMulti-tool MCP server for AI agents with 29 tools across web scraping, SEO analysis, screenshot and PDF generation, domain intelligence, content extraction, multi-chain EVM blockchain queries, and security toolkit. Free tier available with no auth required.Last updated471MIT
- AlicenseAqualityAmaintenanceSecurity intelligence API for AI models. CVE lookup with EPSS/KEV, domain recon (DNS, WHOIS, SSL, subdomains, WAF), and code security checks (secrets, injection, headers). 16 tools, no API key required.Last updated5532MIT
- AlicenseAqualityAmaintenanceDomain security reconnaissance for AI agents — 13 tools (DNS+DNSSEC, SSL/TLS, HTTP security headers, SPF/DKIM/DMARC email auth, port scan, ASN, RDAP/WHOIS) plus a one-shot security_scan returning a 0–100 Health Score (A–F). Free, no API key.Last updated13461MIT
- Alicense-qualityDmaintenanceProvides 17 developer utility tools for AI agents, including free tools like JSON formatting, base64 encoding, UUID generation, and pro tools for regex, JWT, cron, and more.Last updated51MIT
Related MCP Connectors
URL intelligence for AI agents and developers. 16 tools, 25 signal weights, 20 free checks.
Domain & company intel for AI agents: RDAP, DNS, email deliverability, tech stack. No API keys.
500+ deterministic tools for AI agents: math, conversion, validation, hashing, encoding, date/time.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/ForeverTools/kiprio-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server