Back to Browse

Apixies MCP Server

Developer ToolsLow Risk10.0LocalNew
Free

50 developer utility APIs as tools: SSL, DNS, WHOIS, email checks, HTML to PDF, sitemaps and more.

About

50 developer utility APIs as tools: SSL, DNS, WHOIS, email checks, HTML to PDF, sitemaps and more.

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (3 strong, 2 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.

4 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

Shell Command Execution

Runs commands on your machine. Be cautious — only use if you trust this plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

What You'll Need

Set these up before or after installing:

Your Apixies API key. Get one free at https://apixies.io/registerRequired

Environment variable: APIXIES_API_KEY

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-apixies-mcp-server": {
      "env": {
        "APIXIES_API_KEY": "your-apixies-api-key-here"
      },
      "args": [
        "-y",
        "@apixies/mcp-server"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Apixies MCP Server

Connect 52+ developer utility APIs to Claude, Cursor, and any MCP-compatible AI tool.

Check SSL certificates, look up DNS records, validate emails, generate QR codes, convert HTML to PDF, and more. All through natural language.

Quick Start

Add this to your MCP client config:

{
  "mcpServers": {
    "apixies": {
      "command": "npx",
      "args": ["-y", "@apixies/mcp-server"],
      "env": {
        "APIXIES_API_KEY": "apx_your_key_here"
      }
    }
  }
}

Get a free API key at apixies.io/register. The server needs one. Without it every tool call returns a MISSING_API_KEY error.

Setup by Client

Claude Desktop

One click: download apixies.mcpb and double-click it. Claude Desktop asks for your API key and you're done.

Or by hand:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "apixies": {
      "command": "npx",
      "args": ["-y", "@apixies/mcp-server"],
      "env": {
        "APIXIES_API_KEY": "apx_your_key_here"
      }
    }
  }
}

Restart Claude Desktop after saving.

Claude Code

Add to your project's .mcp.json or global config:

{
  "mcpServers": {
    "apixies": {
      "command": "npx",
      "args": ["-y", "@apixies/mcp-server"],
      "env": {
        "APIXIES_API_KEY": "apx_your_key_here"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "apixies": {
      "command": "npx",
      "args": ["-y", "@apixies/mcp-server"],
      "env": {
        "APIXIES_API_KEY": "apx_your_key_here"
      }
    }
  }
}

VS Code

Add to .vscode/mcp.json:

{
  "mcpServers": {
    "apixies": {
      "command": "npx",
      "args": ["-y", "@apixies/mcp-server"],
      "env": {
        "APIXIES_API_KEY": "apx_your_key_here"
      }
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "apixies": {
      "command": "npx",
      "args": ["-y", "@apixies/mcp-server"],
      "env": {
        "APIXIES_API_KEY": "apx_your_key_here"
      }
    }
  }
}

Available Tools

Inspectors

ToolDescription
check_sslCheck SSL/TLS certificate for a domain
check_headersInspect security headers and get a grade
inspect_emailValidate email format, MX records, disposable detection
parse_user_agentDetect browser, OS, device type from UA string
geolocate_ipGet country, city, ISP for an IP address
dns_lookupQuery DNS records (A, MX, TXT, CNAME, NS, etc.)
dns_propagationCheck if a DNS change has reached five public resolvers
trace_redirectsFollow redirect chain and see every hop
extract_meta_tagsGet OpenGraph, Twitter Card, and meta tags
check_linkCheck if a URL is reachable with status and timing
parse_robots_txtParse robots.txt rules and sitemaps
fetch_faviconFind favicon URLs for any website
validate_urlValidate URL format, reachability, and SSL
validate_email_authCheck SPF, DKIM, and DMARC records
check_performanceMeasure DNS, TCP, SSL, TTFB, and load times
whois_lookupLook up domain registration and expiry data
decode_jwtDecode JWT tokens (header, payload, claims)
analyze_textWord count, reading time, keyword frequency
my_ipGet the server's public IP address
http_status_lookupLook up HTTP status code details and fixes
parse_cronParse cron expressions into human-readable descriptions
test_regexTest regex patterns against text with match details
json_diffCompare two JSON objects and return structured diff

Converters

ToolDescription
html_to_pdfConvert HTML to PDF
markdown_to_htmlConvert Markdown to HTML
markdown_to_pdfConvert Markdown to PDF
format_jsonFormat, validate, and analyze JSON
json_to_csvConvert JSON arrays to CSV
csv_to_jsonConvert CSV data to JSON array of objects
html_to_markdownConvert HTML content to Markdown
yaml_to_jsonConvert YAML content to JSON
xml_to_jsonConvert XML content to JSON
json_to_xmlConvert JSON objects to XML
base64_encode_decodeEncode or decode Base64 strings
format_phoneFormat phone numbers (E.164, international)
validate_json_schemaValidate JSON against a schema
convert_colorConvert between HEX, RGB, HSL
convert_timestampConvert Unix timestamps to dates and back
encode_decode_urlURL-encode or decode strings
generate_hashGenerate MD5, SHA-256, SHA-512 hashes

Generators

ToolDescription
generate_qrGenerate QR codes (SVG)
generate_uuidGenerate UUID v4 or v7 identifiers
generate_passwordGenerate secure random passwords
generate_loremGenerate Lorem Ipsum placeholder text
take_screenshotCapture webpage screenshots (PNG/JPEG)

Example Conversations

SSL check:

You: Check if stripe.com has a valid SSL certificate

Claude uses check_ssl tool, then responds with issuer, expiry date, protocol version, and chain health.

DNS lookup:

You: What are the MX records for github.com?

Claude uses dns_lookup with type "MX" and returns the mail server records.

Multi-tool workflow:

You: Do a security audit on mysite.com. Check SSL, security headers, and email authentication.

Claude calls check_ssl, check_headers, and validate_email_auth in sequence, then gives you a combined report.

API Key

The server needs an API key. It's free: register at apixies.io/register, create a key in the dashboard, and you get 75 requests a day.

Set it with the APIXIES_API_KEY environment variable in your MCP client config. The Claude Desktop extension asks for it when you install.

Privacy Policy

The server runs on your machine and sends only the arguments of each tool call (a domain, a URL, some text) to the Apixies API at https://apixies.io, together with your API key. It doesn't read your files, your conversations or anything else on your computer, and it has no telemetry of its own.

Apixies logs API requests for up to 90 days to enforce quotas and debug problems. Payload fields such as text, HTML and email addresses are redacted from those logs. Nothing is sold or shared for advertising.

Full policy: apixies.io/privacy. Questions: hello@apixies.io.

Development

cd mcp-server
npm install
npm run build
npm run inspect  # Opens MCP Inspector to test tools

For local development with auto-reload:

npm run dev

To run against a local Apixies instance, set APIXIES_BASE_URL (for example http://localhost:8000). It defaults to https://apixies.io.

Troubleshooting

Tools don't appear in Claude Desktop

  • Make sure you restarted Claude Desktop after editing the config
  • Check the config file path is correct for your OS
  • Verify Node.js 18+ is installed: node --version

"APIXIES_API_KEY not set" warning

  • The server starts, but every tool call fails with MISSING_API_KEY
  • Add your API key to the env config and restart the client

Rate limit errors

  • Free tier: 75 requests/day with an API key, 20 without
  • Errors include a DAILY_QUOTA_EXCEEDED code

Connection timeout

  • Some tools (screenshot, performance check) may take a few seconds
  • If consistently timing out, check your network connection

License

MIT

Reviews

No reviews yet

Be the first to review this server!