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 💡
mcp-matlab-executor
MCP tool enabling secure execution of MATLAB code with user approval prompts
naver-map-mcp
MCP server utilizing Naver Map APIs for geocoding, reverse geocoding, and route search functionality
orshot
Orshot's MCP Server allows dynamic image generation from templates using prompts in Claude, Cursor, or any MCP-compatible application.
@joshuarileydev/mac-apps-launcher-mcp-server
A Model Context Protocol (MCP) server for launching and managing macOS applications.
cutterMCP
An MCP server that integrates with Cutter to enable LLMs to autonomously reverse engineer applications, exposing Cutter's core functionality for binary analysis.
date-mcp
A simple MCP Server that provides the current date and time, offering tools to get the current date and time in specified formats and timezones.