ZapifyAPI MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ZapifyAPI MCP ServerWhat's the SSL status for zapifyapi.com?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@zapifyapi/mcp-server
Official MCP (Model Context Protocol) server for ZapifyAPI — gives AI agents access to 32 agent-ready tools across image conversion, text analysis, network diagnostics, developer utilities, and data conversion.
Selected from ZapifyAPI's catalogue of 40+ APIs: the tools exposed here are the ones that work well under agent control, with inputs a model can construct and outputs it can reason about.
Quick Start
1. Get your MCP token
Sign up at zapifyapi.com (free)
Go to Dashboard → MCP
Create an MCP token (choose permissions and spending limits)
Copy the token (starts with
mcp_)
2. Add to your AI client
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"zapifyapi": {
"command": "npx",
"args": ["@zapifyapi/mcp-server"],
"env": {
"ZAPIFYAPI_TOKEN": "mcp_your_token_here"
}
}
}
}Kiro
Add to .kiro/settings/mcp.json:
{
"mcpServers": {
"zapifyapi": {
"command": "npx",
"args": ["@zapifyapi/mcp-server"],
"env": {
"ZAPIFYAPI_TOKEN": "mcp_your_token_here"
}
}
}
}Local development
ZAPIFYAPI_TOKEN=mcp_your_token_here npx @zapifyapi/mcp-serverRelated MCP server: IP Geolocation MCP Server
Available Tools (32)
Image & Media
convert_image_to_webp— Convert PNG/JPEG to WebPadd_watermark— Add text watermark to image
Text & Language
translate_text— Translate between 50+ languagesanalyze_sentiment— Detect tone (positive/negative/neutral)extract_keywords— Extract keywords with relevance scorescheck_profanity— Detect and censor profanityvalidate_email— Validate email formatparse_user_agent— Parse UA into components
Network & Security
ip_geolocation— Locate an IP addressdns_lookup— Query DNS records (A, MX, TXT, etc)check_ssl— Check SSL cert validity and expiryscan_ports— Scan open ports on a hostwhois_lookup— Domain WHOIS datahttp_headers— Fetch response headers for a URL
Developer Tools
generate_qr_code— QR code from text/URLgenerate_password— Secure random passwordsgenerate_hash— MD5/SHA1/SHA256/SHA512validate_json— Validate and prettify JSONgenerate_uuid— Random v4 UUIDsdecode_jwt— Decode JWT payloadtest_regex— Test regex against textconvert_color— HEX/RGB/HSL conversionbase64_encode_decode— Base64 encode/decodemarkdown_to_html— Markdown to HTML
Data & Conversion
convert_currency— Real-time currency ratesconvert_units— Length, weight, temperatureconvert_timezone— Time between zonescsv_to_json— Parse CSV to JSONextract_url_metadata— Title, OG tags from URLget_country_info— Country details
Fun
get_random_joke— Programming jokesget_random_quote— Tech quotes
Environment Variables
Variable | Required | Description |
| Yes | Your MCP token (get from dashboard) |
| No | API base URL (default: |
How It Works
Your AI agent connects to this MCP server via stdio
Agent discovers tools via
tools/listAgent calls a tool (e.g.,
dns_lookupwith{ domain: "google.com" })This server sends a POST to
https://api.zapifyapi.com/v1/<your_token>with{ _tool: "dns lookup", domain: "google.com" }The gateway routes to the correct API handler and returns results
Points are deducted from your project balance
Responses
JSON results are returned as text content. Binary results — converted images, QR codes — are returned as native MCP image content, base64-encoded with the correct MIME type, so the agent receives the actual file rather than a description of it.
Errors and retries
Rate-limited requests (HTTP 429) are retried up to three times with exponential backoff and jitter. If the retries are exhausted, or any other error occurs, the error message includes your remaining point balance where the API reports it, so the agent can tell you why a call failed.
Security
Your token is read from the
ZAPIFYAPI_TOKENenvironment variable and is never accepted as a tool argument, so a model cannot be prompted into echoing it into a transcript.The server makes no network calls other than to your configured
ZAPIFYAPI_URL.Scope each MCP token in the dashboard to the APIs you actually want the agent to reach, and set a spending limit. Treat an MCP token like any other credential.
Token Permissions
When creating an MCP token in the dashboard, you can configure:
All APIs — agent can use any API in the store
Specific APIs — limit to a whitelist of APIs
Auto-create — agent can use APIs not yet added to your project (auto-provisions them)
Spending limit — cap ZP usage per period (e.g., 1000 ZP per month)
Pricing
Each tool call costs ZapPoints (1-50 ZP depending on the API). The free plan includes 1,000 ZP/month. See zapifyapi.com/pricing for plans.
Links
Website: https://zapifyapi.com
Dashboard: https://zapifyapi.com/dashboard
API Docs: https://zapifyapi.com/docs
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceA comprehensive MCP server providing secure tools for filesystem operations, Git management, web search, document conversion, npm/.NET project management, and AI generative capabilities (image/video/audio generation and processing) via PiAPI.ai integration.Last updatedApache 2.0
- AlicenseAqualityAmaintenanceOfficial MCP server for ipgeolocation.io APIs. IP geolocation, VPN/proxy detection, timezone, astronomy, user-agent parsing, ASN, company, and IP abuse contact tools for AI assistants.Last updated163994MIT

onion-mcp-serverofficial
AlicenseAqualityCmaintenanceA feature-rich MCP server offering 30 tools across AI, code, text, data, web, and system categories, enabling tasks like chat, translation, code review, web scraping, and text processing.Last updated30MIT- Alicense-qualityCmaintenanceAI-powered image generation MCP server with 16 specialized tools for generating, editing, analyzing, and processing images using Google's Nano Banana 2 model. Supports custom API endpoints and integrates with AI coding assistants via natural language.Last updated3941MIT
Related MCP Connectors
Official MCP server for Lovable, the AI-powered full-stack app builder.
Official MCP server for Qase — manage test cases, runs, suites, defects via AI tools.
MCP server for NanoBanana AI image generation and editing
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/TamirKashy/zapifyapi-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server