New:Microsoft Teams Notifications Are Now Available in Socket.Learn more →
Get Started

@sentinelsup/mcp

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sentinelsup/mcp

MCP server for Maskbreak — check any IP for VPNs, proxies, Tor, datacenter hosting, and fraud risk from Claude, Cursor, or any MCP client.

Source
npmnpm
Version
0.1.2
Version published
Weekly downloads
460
2775%
Maintainers
1
Weekly downloads
 
Created
Source

Maskbreak MCP Server

Check any IP address for fraud signals — VPN, proxy, Tor, datacenter hosting, anonymity — straight from Claude, Cursor, or any MCP client. Powered by the Maskbreak fraud detection API.

Tools

ToolWhat it does
lookup_ipVerdict for any public IPv4/IPv6: allow / review / block, 0–100 risk score, VPN/proxy/Tor/datacenter/anonymity signals, ASN + org + country
service_statusMaskbreak API health, uptime, and latency

Setup

Grab a free API key at maskbreak.com/signup (1,000 lookups/hour, no card). The server also works without a key for a few lookups per minute — enough to try it.

Claude Code

claude mcp add sentinel -e SENTINEL_API_KEY=sk_live_your_key -- npx -y @sentinelsup/mcp

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "sentinel": {
      "command": "npx",
      "args": ["-y", "@sentinelsup/mcp"],
      "env": { "SENTINEL_API_KEY": "sk_live_your_key" }
    }
  }
}

Cursor / other MCP clients

Any client that speaks stdio MCP works the same way: command npx, args ["-y", "@sentinelsup/mcp"], env SENTINEL_API_KEY.

Hosted endpoint (no install)

Prefer a remote server? The same tools are hosted at https://maskbreak.com/mcp (Streamable HTTP). Point any URL-based MCP client at it; pass your API key as an Authorization: Bearer header for full quota.

Example

"Is 185.220.101.34 safe to allow through signup?"

{
  "ip": "185.220.101.34",
  "known": true,
  "verdict": "block",
  "risk_score": 90,
  "signals": { "vpn": false, "proxied": false, "tor": true, "dch": true, "anon": true },
  "network": { "asn": 205100, "org": "F3 Netze e.V.", "country": "DE" }
}

Environment

VariableRequiredDefaultPurpose
SENTINEL_API_KEYrecommended—API key from your dashboard; unlocks 1,000 lookups/hour
SENTINEL_BASE_URLnohttps://maskbreak.comOverride for testing

MIT © Sentinel Edge Networks LTD

Keywords

mcp

FAQs

Package last updated on 26 Aug 2026

Related posts