vet-mcp Server
What
The vet MCP server helps MCP clients (Claude Code, Cursor, VS Code) vet open source packages, protecting against slopsquatting attacks, malicious packages, vulnerabilities, and other security risks. Supports npm and PyPI ecosystems.
How
Start Server
- SSE Transport:
vet server mcp --server-type sse - Stdio Transport:
vet -l /tmp/vet-mcp.log server mcp --server-type stdio(Avoid stdout logging to prevent interference)
Configure Clients
Cursor
Add to .cursor/mcp.json or ~/.cursor/mcp.json:
{
"mcpServers": {
"vet-mcp": {
"command": "docker",
"args": ["run", "--rm", "-i", "ghcr.io/safedep/vet:latest", "-l", "/tmp/vet-mcp.log", "server", "mcp"]
}
}
}
Visual Studio Code
Add to .vscode/mcp.json or User Settings settings.json:
{
"mcp": {
"servers": {
"vet-mcp": {
"command": "docker",
"args": ["run", "--rm", "-i", "ghcr.io/safedep/vet:latest", "-l", "/tmp/vet-mcp.log", "server", "mcp"]
}
}
}
}
Claude Code
Add to .mcp.json:
{
"mcpServers": {
"vet-mcp": {
"command": "docker",
"args": ["run", "--rm", "-i", "ghcr.io/safedep/vet:latest", "server", "mcp"]
}
}
}
Notes
- Docker containers need periodic updates to the latest version.
- Can use
vetbinary directly with stdio transport:vet -l /tmp/vet-mcp.log server mcp --server-type stdio
Recommend MCP Servers 💡
java-mcp
A Model Context Protocol (MCP) server implemented in Java, configurable for use with clients like Claude Desktop.
Medinios/SuricataMCP
A Model Context Protocol Server enabling MCP clients to use Suricata for network traffic analysis through programmatic tools.
xcode-mcp-server
MCP Server implementation for Xcode integration
mcp-v8
MCP server that exposes a V8 JavaScript runtime as a tool for AI agents like Claude and Cursor. Supports persistent heap snapshots via S3 or local filesystem, and is ready for integration with modern AI development environments.
h0rv/d2-mcp
A Model Context Protocol (MCP) server for working with D2: Declarative Diagramming, enabling seamless integration of diagram creation and validation into your development workflow.
trello-report-mcp
MCP server for generating detailed Trello board reports by quarter or year