pleamo
OfficialClick 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., "@pleamoCheck this URL for scam: https://example.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.
pleamo MCP server
Exposes pleamo's AI scam/phishing URL checks as MCP tools, so any MCP client (Claude Desktop, Cursor, your own agent) can ask pleamo "is this link safe?" before opening or recommending it.
It's a thin, authenticated proxy to the hosted pleamo API — every check goes through the same per-user and global caps that protect the service.
Tools
Tool | What it does |
| Judge a URL: verdict (safe/suspicious/dangerous), severity, confidence, reason |
| Flag a wrongly-blocked domain for review |
| Your plan + today's AI-check usage |
Related MCP server: Malicious Scanner MCP Server
Setup
Get a pleamo API key (a revocable key from the dashboard at
https://dash.pleamo.app/keys).Point your MCP client at this server. For Claude Desktop, add to
claude_desktop_config.json:
{
"mcpServers": {
"pleamo": {
"command": "npx",
"args": ["-y", "pleamo-mcp"],
"env": {
"PLEAMO_TOKEN": "your-api-key-here"
}
}
}
}Restart the client. You'll then be able to say things like "check this link with
pleamo: https://paypa1-login.example" and the agent will call check_url.
Environment
Var | Default | Notes |
| — | Required. Bearer token for the pleamo API. |
|
| Override for local dev (e.g. |
Develop
npm install
npm run verify # lint + format + unit tests
npm start # runs the stdio server (expects an MCP client on stdin)Quick stdio smoke test (lists the tools):
printf '%s\n' \
'{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"smoke","version":"0"}}}' \
'{"jsonrpc":"2.0","method":"notifications/initialized"}' \
'{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}' \
| node src/server.jsRemote (hosted) alternative
If your client supports remote MCP servers, you don't need this local process at all — connect straight to the hosted endpoint:
https://dash.pleamo.app/api/mcpIt speaks JSON-RPC over HTTP (same three tools) and authenticates with a pleamo
API key as a Bearer token. Create a revocable key at
https://dash.pleamo.app/keys. This local stdio server is for clients that only
speak stdio (e.g. current Claude Desktop).
Notes
Auth / tokens — get a revocable API key from the dashboard (
/keys) and set it asPLEAMO_TOKEN. (A raw session token also works, but keys are the right, revocable option.)Transport — this package is stdio; the hosted
/api/mcpabove is the remote Streamable-HTTP variant.The other MCP direction — letting the extension route checks through the user's own agent (BYO-via-MCP) is tracked alongside the extension source at pleamo/pleamo-chrome-extension.
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
- AlicenseCqualityDmaintenanceProvides access to a malicious URL database API, enabling users to search, list, and retrieve information about potentially dangerous URLs for security analysis and threat detection.3MIT
- AlicenseBqualityDmaintenanceEnables real-time scanning of URLs for malicious content, spam/gray classification, and additional security flags like domain age through the Malicious Scanner API.1MIT

scanmalware-mcpofficial
AlicenseNot gradedqualityCmaintenanceWraps the ScanMalware.com API to enable phishing triage, malware scanning, and certificate inspection through natural language, allowing users to submit scans, retrieve results, and analyze threats via MCP tools.Apache 2.0- FlicenseNot gradedqualityBmaintenanceChecks URLs for phishing risks using URL, DNS, HTTP, HTML, and mobile rendering signals, and provides a 1024x1024 PNG visual summary of the page.
Related MCP Connectors
PhishTank MCP — wraps PhishTank API (checkurl.phishtank.com)
URLhaus MCP — wraps abuse.ch URLhaus malware URL database (free, no auth)
A paid remote MCP for developer endpoint scanner MCP, built to return verdicts, receipts, usage logs
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/pleamo/pleamo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server