checkvibe-mcp
v1.0.0
Published
MCP server for CheckVibe security scanning — run security audits from AI coding agents
Maintainers
Readme
@checkvibe123/mcp-server
MCP (Model Context Protocol) server for CheckVibe security scanning. Run automated security audits on any web application directly from your AI coding agent.
Setup
1. Get an API key
Create an API key at checkvibe.dev/dashboard/api-keys.
2. Add to your AI coding agent
Claude Code — run in your project directory:
claude mcp add checkvibe -- npx -y @checkvibe123/mcp-serverThen set the env var in your MCP config (.mcp.json):
{
"mcpServers": {
"checkvibe": {
"command": "npx",
"args": ["-y", "@checkvibe123/mcp-server"],
"env": {
"CHECKVIBE_API_KEY": "cvd_live_..."
}
}
}
}Cursor — add to .cursor/mcp.json:
{
"mcpServers": {
"checkvibe": {
"command": "npx",
"args": ["-y", "@checkvibe123/mcp-server"],
"env": {
"CHECKVIBE_API_KEY": "cvd_live_..."
}
}
}
}Tools
| Tool | Description |
|------|-------------|
| run_scan | Trigger a security scan on a URL. Returns score and findings summary. |
| get_scan_results | Get detailed results for a specific scan by ID. |
| list_scans | List recent scans with status and scores. |
Environment Variables
| Variable | Required | Description |
|----------|----------|-------------|
| CHECKVIBE_API_KEY | Yes | Your CheckVibe API key (cvd_live_...) |
| CHECKVIBE_BASE_URL | No | API base URL (default: https://checkvibe.dev) |
License
MIT
