pleamo
Officialpleamo MCP server
pleamo の AI によるスパム/フィッシング URL チェックを MCP ツールとして公開し、あらゆる MCP クライアント(Claude Desktop、Cursor、独自エージェント)が、リンクを開いたり推奨したりする前に pleamo に「このリンクは安全か?」と問い合わせられるようにします。
これはホスト型 pleamo API への薄い認証付きプロキシです。すべてのチェックは、サービスを保護する同じユーザー単位およびグローバル単位の上限を経由します。
Tools
Tool | 機能 |
| URL を判定: 判定結果(safe/suspicious/dangerous)、深刻度、信頼度、理由 |
| 誤ってブロックされたドメインをレビュー用にフラグ付け |
| プランと本日の AI チェック使用量 |
Related MCP server: Malicious Scanner MCP Server
Setup
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" のように言えば、エージェントが check_url を呼び出します。
Environment
Var | Default | Notes |
| — | 必須。pleamo API の Bearer トークン。 |
|
| ローカル開発用の上書き(例: |
Develop
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.jsRemote (hosted) alternative
クライアントが リモート MCP サーバー をサポートしている場合、このローカルプロセスは不要です。ホスト型エンドポイントに直接接続してください:
https://dash.pleamo.app/api/mcpこれは HTTP 上の JSON-RPC を話し(同じ 3 つのツール)、pleamo API キー を Bearer トークンとして認証します。https://dash.pleamo.app/keys で取り消し可能なキーを作成してください。このローカル stdio サーバーは、stdio のみを話すクライアント(例: 現在の Claude Desktop)向けです。
Notes
認証 / トークン — ダッシュボード(
/keys)から取り消し可能な API キー を取得し、PLEAMO_TOKENとして設定します。(生のセッショントークンも機能しますが、キーが正しく取り消し可能な選択肢です。)トランスポート — このパッケージは stdio です。上記のホスト型
/api/mcpはリモートの Streamable-HTTP バリアントです。もう一方の MCP 方向 — 拡張機能 がユーザー自身のエージェント経由でチェックをルーティングできるようにする(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