npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@apixies/mcp-server

v1.0.0

Published

MCP server for Apixies.io - 39+ developer utility APIs as AI tools

Downloads

195

Readme

Apixies MCP Server

Connect 39+ 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. Works without a key too (sandbox mode, 20 requests/day).

Setup by Client

Claude Desktop

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

| Tool | Description | |------|-------------| | check_ssl | Check SSL/TLS certificate for a domain | | check_headers | Inspect security headers and get a grade | | inspect_email | Validate email format, MX records, disposable detection | | parse_user_agent | Detect browser, OS, device type from UA string | | geolocate_ip | Get country, city, ISP for an IP address | | dns_lookup | Query DNS records (A, MX, TXT, CNAME, NS, etc.) | | trace_redirects | Follow redirect chain and see every hop | | extract_meta_tags | Get OpenGraph, Twitter Card, and meta tags | | check_link | Check if a URL is reachable with status and timing | | parse_robots_txt | Parse robots.txt rules and sitemaps | | fetch_favicon | Find favicon URLs for any website | | validate_url | Validate URL format, reachability, and SSL | | validate_email_auth | Check SPF, DKIM, and DMARC records | | check_performance | Measure DNS, TCP, SSL, TTFB, and load times | | whois_lookup | Look up domain registration and expiry data | | decode_jwt | Decode JWT tokens (header, payload, claims) | | analyze_text | Word count, reading time, keyword frequency | | my_ip | Get the server's public IP address |

Converters

| Tool | Description | |------|-------------| | html_to_pdf | Convert HTML to PDF | | markdown_to_html | Convert Markdown to HTML | | format_json | Format, validate, and analyze JSON | | json_to_csv | Convert JSON arrays to CSV | | base64_encode_decode | Encode or decode Base64 strings | | format_phone | Format phone numbers (E.164, international) | | validate_json_schema | Validate JSON against a schema | | convert_color | Convert between HEX, RGB, HSL | | convert_timestamp | Convert Unix timestamps to dates and back | | encode_decode_url | URL-encode or decode strings | | generate_hash | Generate MD5, SHA-256, SHA-512 hashes |

Generators

| Tool | Description | |------|-------------| | generate_qr | Generate QR codes (SVG or PNG) | | shorten_url | Create short URLs with optional expiration | | get_url_stats | Get click stats for shortened URLs | | generate_uuid | Generate UUID v4 or v7 identifiers | | generate_password | Generate secure random passwords | | generate_lorem | Generate Lorem Ipsum placeholder text | | take_screenshot | Capture 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 works in two modes:

  • Without a key (sandbox): 20 requests per day. Good for trying it out.
  • With a free key: 75 requests per day. Register at apixies.io/register.

Set your key via the APIXIES_API_KEY environment variable in your MCP client config.

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

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 still works in sandbox mode (20 req/day)
  • To remove the warning, add your API key to the env config

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