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

tridentchain-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

tridentchain-mcp

MCP server for TridentChain Security — Claude, Cursor, and other MCP hosts

pipPyPI
Version
0.1.5
Weekly downloads
534
Maintainers
1
Created

tridentchain-mcp

MCP server for TridentChain Security — one local stdio server for Claude, Cursor, VS Code, Windsurf, Zed, and any MCP-compatible agent.

Requires: pip install "tridentchain-security>=0.1.1" (unified tool layer).

The tridentchain-security CLI is unchanged — universal fallback for any agent that runs shell commands.

Install

Option A — pip (Python 3.10+)

pip install -U "tridentchain-security>=0.1.4" "tridentchain-mcp>=0.1.4"

Option B — uvx (no manual Python install)

uvx tridentchain-mcp

Option C — Docker (no Python needed on host)

docker pull ghcr.io/devinder1/tridentchain-mcp:latest
docker run --rm -i -v "$PWD:/workspace" ghcr.io/devinder1/tridentchain-mcp:latest

Public image: https://github.com/DevInder1/supply-chain-scanner-public/pkgs/container/tridentchain-mcplinux/amd64 and linux/arm64, MIT, non-root user, ~205 MB.

Tools (all agents)

ToolDescription
scan_projectProject dependencies only
scan_fullProject + system + extensions
validate_after_patchDiff two scan JSON results

Quick config

MCP hosts using mcpServers (Claude, Cursor, Windsurf):

{
  "mcpServers": {
    "tridentchain": {
      "command": "python3",
      "args": ["-m", "tridentchain_mcp"]
    }
  }
}

Or with Docker (no Python required on host):

{
  "mcpServers": {
    "tridentchain": {
      "command": "docker",
      "args": [
        "run", "--rm", "-i",
        "-v", "${workspaceFolder}:/workspace",
        "ghcr.io/devinder1/tridentchain-mcp:latest"
      ]
    }
  }
}

VS Code uses "servers" — see integrations/vscode/mcp.json.example.

OpenAI uses function calling (not MCP) — see integrations/openai/ and examples/openai/.

Agent setup

AgentGuide
All platformsdocs/AGENT_INTEGRATIONS.md
Claudedocs/CLAUDE_MCP_SETUP.md
Cursordocs/CURSOR_SETUP.md
VS Codedocs/VSCODE_SETUP.md
Helper script./scripts/setup-agent-mcp.sh <agent>

Copy-paste configs: integrations/mcp/

Keywords

mcp

FAQs

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