Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server that provides AI clients with 26 security and developer tools, enabling tasks like JWT decoding, HTTP header analysis, and phishing URL inspection.

README.md

ghostkit MCP Server - Security Tools for AI

![MCP Compatible](https://modelcontextprotocol.io) ![Tools](https://ghostkit.net/mcp) ![License](https://ghostkit.net/terms)

MCP server that gives Claude, Cursor, Windsurf, and any MCP-compatible AI client access to 26 security and developer tools. Ask your AI to decode a JWT, analyze HTTP security headers, hash a payload, or inspect a phishing URL, and it picks the right tool automatically.

Free during early access. Sign in and get your API key

What you can do with it

Ask your AI things like:

  • "Decode this JWT and tell me if it's expired"
  • "Check this HTTP response for missing security headers"
  • "Analyze the CSP policy and grade it"
  • "Is this URL a phishing attempt? Check for homoglyphs"
  • "Generate an Ed25519 keypair"
  • "Decode this Ethereum calldata"
  • "Hash this string with SHA-256 and MD5"
  • "Inspect these email headers for SPF/DKIM issues"

The MCP server routes each request to the right tool. No manual tool selection needed.

All 26 tools

Decode & Transform

  • Encoder/Decoder - Base64, Hex, URL, HTML entities, Unicode, Octal with auto-detection
  • JWT Decoder - Parse headers, claims, expiry, and flag security warnings (alg:none, missing iss)
  • JS Deobfuscator - Decode hex/unicode strings, unpack arrays, unwrap eval(), beautify output
  • SAML Decoder - Decode base64 SAML responses, extract assertions, attributes, and conditions

Inspect & Analyze

  • URL Analyzer - Break down URLs, detect phishing indicators, homoglyphs, suspicious TLDs, defang for sharing
  • Email Header Analyzer - Trace message routes, check SPF/DKIM/DMARC, detect spoofing
  • CSP Analyzer - Parse Content-Security-Policy, detect unsafe-inline/eval, grade A-F
  • CORS Checker - Detect wildcard origins, credential leaks, missing preflight headers
  • Character Inspector - Find zero-width chars, homoglyphs, mixed scripts, bidi control characters
  • Cookie Analyzer - Parse Set-Cookie headers, check Secure/HttpOnly/SameSite, detect misconfigurations
  • Entropy Analyzer - Shannon entropy calculation, detect encrypted/compressed/obfuscated data
  • Hex Viewer - Hex + ASCII dump with magic byte file signature detection
  • HTTP Response Inspector - Parse raw responses, audit security headers, flag info leaks
  • Certificate Decoder - Decode PEM certificates, show subject, issuer, SANs, expiry, key details

Format & Compare

  • JSON Formatter - Validate, pretty-print, minify, report key count and nesting depth
  • YAML/TOML Formatter - Parse, format, convert between YAML, TOML, and JSON
  • Code Diff - Line-by-line unified diff between two code snippets
  • Regex Tester - Test patterns with match positions and capture groups
  • Timestamp Converter - Convert Unix/ISO/human dates, relative time, auto-detect format

Crypto & Network

  • Hash Generator - MD5, SHA-1, SHA-256, SHA-512 with optional hash comparison
  • Password Generator - Cryptographically secure passwords and passphrases with entropy scoring
  • RSA/EC Key Generator - Generate RSA, ECDSA, ECDH, Ed25519 keypairs in PEM format
  • IP/CIDR Calculator - Subnet math, host ranges, private/reserved detection, membership checks

Web3 & Blockchain

  • Keccak-256 Hasher - Compute Keccak-256 hashes, Ethereum function selectors, event topics
  • ABI Decoder - Decode Ethereum calldata into function calls (transfer, approve, swap, etc.)
  • Transaction Decoder - Parse RLP-encoded transactions (Legacy, EIP-2930, EIP-1559)

Quick start

1. Get your API key

Sign in at ghostkit.net and create a free API key from your account page.

2. Clone and install

git clone https://github.com/pspray/ghostkit-mcp.git
cd ghostkit-mcp
npm install

3. Connect to your AI client

<details> <summary><strong>Claude Desktop</strong></summary>

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "ghostkit": {
      "command": "node",
      "args": ["/path/to/ghostkit-mcp/index.js"],
      "env": {
        "GHOSTKIT_API_KEY": "gk_your_key_here"
      }
    }
  }
}

</details>

<details> <summary><strong>Claude Code (CLI)</strong></summary>

GHOSTKIT_API_KEY=gk_your_key_here \
  claude mcp add ghostkit -- node /path/to/ghostkit-mcp/index.js

</details>

<details> <summary><strong>Cursor / Windsurf / other MCP clients</strong></summary>

Add to your MCP configuration (check your client's docs for the exact file):

{
  "mcpServers": {
    "ghostkit": {
      "command": "node",
      "args": ["/path/to/ghostkit-mcp/index.js"],
      "env": {
        "GHOSTKIT_API_KEY": "gk_your_key_here"
      }
    }
  }
}

</details>

Replace /path/to/ghostkit-mcp with the actual path where you cloned the repo.

How it works

This repo is a thin MCP client. On startup it fetches the tool definitions from the ghostkit API, then forwards each tool call to the backend for execution. Your AI client sees 26 tools it can call, and the actual processing happens server-side.

This means you always have the latest tools without pulling updates, and no security-sensitive computation runs on your machine.

Requires a ghostkit API key for authentication.

Links

License

Proprietary. See Terms of Use.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Productivity servers.