🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@entropy0/mcp

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@entropy0/mcp

Entropy0 MCP server — source trust and URL safety tools for AI agents

latest
Source
npmnpm
Version
0.1.5
Version published
Weekly downloads
41
-22.64%
Maintainers
1
Weekly downloads
 
Created
Source

@entropy0/mcp

MCP server for Entropy0 — source trust and URL safety tools for AI agents.

Before your agent navigates a URL, fetches content, or submits credentials, Entropy0 tells it whether the domain is safe. Returns a recommended action (proceed, proceed_with_caution, sandbox, or deny) based on trust, threat, and structural anomaly signals.

Install

npx -y @entropy0/mcp

Or add to your MCP client config:

{
  "mcpServers": {
    "entropy0": {
      "command": "npx",
      "args": ["-y", "@entropy0/mcp"],
      "env": {
        "ENTROPY0_API_KEY": "sk_ent0_your_key_here"
      }
    }
  }
}

Get an API key at entropy0.ai.

Tools

check_url

Evaluate whether a URL is safe to interact with.

check_url({ url: "https://example.com", interaction: "navigate" })

Returns trust score, threat score, recommended action, and reason codes.

check_domain

Evaluate a bare domain name.

check_domain({ domain: "example.com" })

Response

{
  "recommended_action": "proceed",
  "scores": {
    "trust":     { "score": 88, "confidence": 0.91 },
    "threat":    { "score": 4,  "confidence": 0.87 },
    "deviation": { "score": 11, "confidence": 0.84 }
  },
  "decision": {
    "reason_codes": ["STRONG_TRUST_HISTORY", "LOW_THREAT_SIGNALS"]
  },
  "identity_assessment": {
    "claimed_entity": "stripe.com",
    "posture": "strongly_supported_entity_domain",
    "confidence": "high",
    "analyst_note": "Multiple independent structural signals support a stripe.com relationship."
  }
}

Requirements

  • Node.js 18+
  • An Entropy0 API key (sk_ent0_...)

Keywords

mcp

FAQs

Package last updated on 22 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts