Claude Desktop Cursor Cline (VS Code) Windsurf Continue.dev Zed Claude Code (CLI)
~/Library/Application Support/Claude/claude_desktop_config.json · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"cisco-mcp-scanner": {
"command": "uvx",
"args": [
"mcp-scanner",
"--server",
"stdio:npx -y <target>"
],
"_doc": "Run against any MCP server config; produces a security report."
}
}
}
⧉ Copiar
Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.
~/.cursor/mcp.json · .cursor/mcp.json
{
"mcpServers": {
"cisco-mcp-scanner": {
"command": "uvx",
"args": [
"mcp-scanner",
"--server",
"stdio:npx -y <target>"
],
"_doc": "Run against any MCP server config; produces a security report."
}
}
}
⧉ Copiar
Cursor usa o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a global.
VS Code → Cline → MCP Servers → Edit
{
"mcpServers": {
"cisco-mcp-scanner": {
"command": "uvx",
"args": [
"mcp-scanner",
"--server",
"stdio:npx -y <target>"
],
"_doc": "Run against any MCP server config; produces a security report."
}
}
}
⧉ Copiar
Clique no ícone MCP Servers na barra lateral do Cline, depois "Edit Configuration".
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"cisco-mcp-scanner": {
"command": "uvx",
"args": [
"mcp-scanner",
"--server",
"stdio:npx -y <target>"
],
"_doc": "Run against any MCP server config; produces a security report."
}
}
}
⧉ Copiar
Mesmo formato do Claude Desktop. Reinicie o Windsurf para aplicar.
~/.continue/config.json
{
"mcpServers": [
{
"name": "cisco-mcp-scanner",
"command": "uvx",
"args": [
"mcp-scanner",
"--server",
"stdio:npx -y <target>"
]
}
]
}
⧉ Copiar
O Continue usa um array de objetos de servidor em vez de um map.
~/.config/zed/settings.json
{
"context_servers": {
"cisco-mcp-scanner": {
"command": {
"path": "uvx",
"args": [
"mcp-scanner",
"--server",
"stdio:npx -y <target>"
]
}
}
}
}
⧉ Copiar
Adicione em context_servers. Zed recarrega automaticamente ao salvar.
claude mcp add cisco-mcp-scanner -- uvx mcp-scanner --server 'stdio:npx -y <target>'
⧉ Copiar
Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.