pleamo
Officialpleamo MCP server
将 pleamo 的 AI 诈骗/钓鱼 URL 检查以 MCP 工具 的形式暴露出来,让任何 MCP 客户端(Claude Desktop、Cursor 或你自己的 agent)都可以在打开或推荐链接之前,向 pleamo 询问"这个链接安全吗?"
它是一个轻量的、经过认证的托管 pleamo API 代理——每次检查都遵循保护服务的相同每用户和全局上限。
工具
工具 | 功能 |
| 判断一个 URL:判定(安全/可疑/危险)、严重程度、置信度、原因 |
| 标记被错误拦截的域名以供审核 |
| 你的套餐 + 今日 AI 检查用量 |
Related MCP server: Malicious Scanner MCP Server
设置
获取一个 pleamo API 密钥(从
https://dash.pleamo.app/keys的仪表板获取可撤销的密钥)。将你的 MCP 客户端指向此服务器。对于 Claude Desktop,添加到
claude_desktop_config.json:
{
"mcpServers": {
"pleamo": {
"command": "npx",
"args": ["-y", "pleamo-mcp"],
"env": {
"PLEAMO_TOKEN": "your-api-key-here"
}
}
}
}重启客户端。然后你就可以说类似 "用 pleamo 检查这个链接:https://paypa1-login.example" 这样的话,agent 就会调用 check_url。
环境变量
变量 | 默认值 | 说明 |
| — | 必填。pleamo API 的 Bearer 令牌。 |
|
| 本地开发时覆盖(例如 |
开发
npm install
npm run verify # lint + format + unit tests
npm start # runs the stdio server (expects an MCP client on stdin)快速 stdio 冒烟测试(列出工具):
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.js远程(托管)替代方案
如果你的客户端支持 远程 MCP 服务器,你根本不需要这个本地进程——直接连接到托管端点:
https://dash.pleamo.app/api/mcp它通过 HTTP 使用 JSON-RPC 通信(同样的三个工具),并使用 pleamo API 密钥作为 Bearer 令牌进行认证。在 https://dash.pleamo.app/keys 创建一个可撤销的密钥。这个本地 stdio 服务器适用于只支持 stdio 的客户端(例如当前的 Claude Desktop)。
备注
认证 / 令牌 — 从仪表板(
/keys)获取一个可撤销的 API 密钥,并将其设置为PLEAMO_TOKEN。(原始会话令牌也可以,但密钥才是正确、可撤销的选择。)传输方式 — 此包使用 stdio;上面的托管
/api/mcp是远程 Streamable-HTTP 变体。另一个 MCP 方向 — 让 扩展 通过用户自己的 agent 路由检查(BYO-via-MCP)已在 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