phishclean-mcp
Click on "Deploy 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., "@phishclean-mcpCheck if this URL is safe: http://paypal-secure.xyz/login"
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.
phishclean-mcp
MCP server for PhishClean security analysis tools. Works with Claude Desktop, Claude Code, Gemini CLI, and any MCP-compatible client.
Quick Start
npx phishclean-mcpOr add it to Claude Code in one line:
claude mcp add phishclean -- npx -y phishclean-mcpRelated MCP server: agentguard
Claude Desktop Setup
Add to your claude_desktop_config.json:
{
"mcpServers": {
"phishclean": {
"command": "npx",
"args": ["-y", "phishclean-mcp"]
}
}
}Config file location:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Tools
Tool | Description |
| Check a URL for phishing signals (domain spoofing, suspicious TLDs, token leaks) |
| Analyze password strength (entropy, crack time, common patterns) |
| Detect phishing in email body text (urgency, threats, credential requests) |
| Check email headers for SPF/DKIM/DMARC and spoofing |
| Decode JWT and flag security issues (expired, alg:none, sensitive data) |
| Scan code for leaked API keys (AWS, Stripe, GitHub, Google, etc.) |
| Full page scan — 12 phishing signals on HTML source |
Examples
Once configured, ask Claude:
"Check if this URL is safe: https://paypal-secure.xyz/login"
"How strong is the password Summer2024!?"
"Is this email phishing? Dear customer, verify your account..."
"Scan this code for leaked secrets: const key = AKIA..."
"Decode this JWT: eyJhbGci..."
API Key (Optional)
Free tier: 30 requests/hour (no key needed).
For higher limits, get an API key at phishclean.com/developers:
Tier | Rate Limit | Price |
Free | 30 req/hr | $0 |
Pro | 2,000 req/hr | $19/mo |
Business | 25,000 req/hr | $49/mo |
Enterprise | Unlimited | $700/yr |
Set your API key via environment variable:
{
"mcpServers": {
"phishclean": {
"command": "npx",
"args": ["-y", "phishclean-mcp"],
"env": {
"PHISHCLEAN_API_KEY": "pk_live_your_key_here"
}
}
}
}Or via shell:
PHISHCLEAN_API_KEY=pk_live_your_key_here npx phishclean-mcpAPI
All tools call the PhishClean API at https://www.phishclean.com/api/v1/.
Override the base URL with:
PHISHCLEAN_API_URL=http://localhost:3000 npx phishclean-mcpWhat this server sends, and where
This is a thin stdio client: each tool call is one HTTPS POST to https://www.phishclean.com/api/v1/<tool> carrying only the argument you passed (the URL, password, email text, headers, token, or source). Nothing is stored or logged server-side beyond rate limiting; passwords are analysed and discarded. The whole server is one file — read it before trusting it.
The PhishClean browser extension is a separate, fully local product whose source is also public: phishclean-extension.
Links
License
MIT — see LICENSE.
Related MCP Connectors
Security & DLP proxy for MCP: tool-poisoning scans, PII redaction on tool args/results. Beta.
Zero-config MCP security scanner for AI-generated apps. 25K+ vulnerability patterns.
Enrich, search, assess, and manage threat intelligence through 80+ typed MCP tools.
MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.
Related MCP Servers
AlicenseAqualityDmaintenanceEnables security analysis of code and infrastructure files via MCP, using Symbiotic CLI for scanning vulnerabilities.4MIT- AlicenseNot gradedqualityAmaintenanceEnables scanning of AI agent code for security vulnerabilities such as prompt injection, tool abuse, and data exfiltration, directly from MCP-compatible clients like Claude Code.2LGPL 3.0
- FlicenseAqualityCmaintenanceEnables AI assistants to perform defensive security tasks such as vulnerability detection, CVE lookup, phishing/link safety checks, and security report generation via MCP tools.23-
- AlicenseAqualityBmaintenanceEnables policy-first defensive security operations for MCP, providing repository and web-security analysis with controlled authorization, scoped execution, and auditability.91MIT