Skip to main content
Glama
pleamo

pleamo

Official
by pleamo

pleamo MCP server

将 pleamo 的 AI 诈骗/钓鱼 URL 检查以 MCP 工具 的形式暴露出来,让任何 MCP 客户端(Claude Desktop、Cursor 或你自己的 agent)都可以在打开或推荐链接之前,向 pleamo 询问"这个链接安全吗?"

它是一个轻量的、经过认证的托管 pleamo API 代理——每次检查都遵循保护服务的相同每用户和全局上限。

工具

工具

功能

check_url

判断一个 URL:判定(安全/可疑/危险)、严重程度、置信度、原因

report_false_positive

标记被错误拦截的域名以供审核

get_status

你的套餐 + 今日 AI 检查用量

Related MCP server: Malicious Scanner MCP Server

设置

  1. 获取一个 pleamo API 密钥(从 https://dash.pleamo.app/keys 的仪表板获取可撤销的密钥)。

  2. 将你的 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_TOKEN

必填。pleamo API 的 Bearer 令牌。

PLEAMO_API_BASE

https://dash.pleamo.app

本地开发时覆盖(例如 http://localhost:4400)。

开发

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 的扩展源码中跟踪。

Install Server
A
license - permissive license
A
quality
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
1Releases (12mo)
Commit activity

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

  • A
    license
    C
    quality
    D
    maintenance
    Provides 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.
    3
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Wraps 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

View all related MCP servers

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

View all MCP Connectors

Latest Blog Posts

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