Claude Desktop
jsonAdd to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows). Restart Claude Desktop afterwards.
{
"mcpServers": {
"visualsentinel": {
"command": "npx",
"args": ["-y", "@visualsentinel/mcp-server"],
"env": {
"VS_API_KEY": "vs_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
}
}
}
Claude Code (CLI)
bashInstall the marketplace plugin (recommended, includes 3 skills and 3 slash commands) or just register the MCP server directly.
# Recommended: full plugin (MCP server + skills + commands)
claude plugin marketplace add github.com/VisualSentinel/claude-plugins
claude plugin install visual-sentinel@visualsentinel
export VS_API_KEY=vs_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxx
# Or: MCP server only
claude mcp add visualsentinel -- npx -y @visualsentinel/mcp-server
Cline (VS Code extension)
jsonOpen Cline’s settings panel, MCP servers tab, and add the JSON below.
{
"visualsentinel": {
"command": "npx",
"args": ["-y", "@visualsentinel/mcp-server"],
"env": { "VS_API_KEY": "vs_live_..." }
}
}
Cursor
jsonCursor reads MCP servers from ~/.cursor/mcp.json. Create or edit that file:
{
"mcpServers": {
"visualsentinel": {
"command": "npx",
"args": ["-y", "@visualsentinel/mcp-server"],
"env": { "VS_API_KEY": "vs_live_..." }
}
}
}
Continue
jsonEdit ~/.continue/config.json. Add to the mcpServers array:
{
"mcpServers": [
{
"name": "visualsentinel",
"command": "npx",
"args": ["-y", "@visualsentinel/mcp-server"],
"env": { "VS_API_KEY": "vs_live_..." }
}
]
}