run-inspector.ps1ā¢664 B
# Run MCP Inspector for SearXNG MCP Server
# Set the SearXNG base URL
$env:SEARXNG_BASE_URL = "http://localhost:8080/"
# Disable SSL verification for local instance
$env:SEARXNG_VERIFY_SSL = "false"
Write-Host "Starting MCP Inspector with SearXNG server..." -ForegroundColor Green
Write-Host "Base URL: $env:SEARXNG_BASE_URL" -ForegroundColor Cyan
Write-Host "SSL Verification: $env:SEARXNG_VERIFY_SSL" -ForegroundColor Cyan
Write-Host ""
# Run the inspector
npx @modelcontextprotocol/inspector python -m searxng_mcp_server
Write-Host ""
Write-Host "Press any key to continue..." -ForegroundColor Yellow
$null = $Host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")