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 💡
domain-tools-mcp-server
A Model Context Protocol (MCP) server for comprehensive domain analysis, including WHOIS lookups, DNS record queries, and DNS health checks.
Office-PowerPoint-MCP-Server
A MCP server for PowerPoint manipulation using python-pptx, providing tools for creating, editing, and manipulating PowerPoint presentations through the MCP protocol.
claude-debugs-for-you
Enable any LLM (e.g. Claude) to interactively debug any language for you via MCP and a VS Code Extension
Token-Minter-MCP
An MCP server providing tools for AI agents to mint ERC-20 tokens across multiple blockchains.
mcp-git-commit-aider
A TypeScript-based MCP server that enables tracking AI contributions by committing staged Git changes with "(aider)" appended to the committer name
gif-creator-mcp
MCP that allows you to take your video and turn it into a gif.