nordvpn_diagnose
Run diagnostics to identify and resolve NordVPN connection issues on macOS.
Instructions
Diagnose NordVPN issues
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:99-99 (registration)Tool name 'nordvpn_diagnose' registered as an entry in the TOOLS array with description 'Diagnose NordVPN issues'. This is a stub; the real implementation is in a native binary.
["nordvpn_diagnose", "Diagnose NordVPN issues"], - server.js:106-110 (handler)Generic stub handler for all tools including nordvpn_diagnose — returns a static message directing to install Local MCP. No real logic exists in this codebase.
for (const [name, desc] of TOOLS) { server.tool(name, desc, {}, async () => ({ content: [{ type: "text", text: "This is an inspection stub. Install Local MCP: npx -y local-mcp@latest setup" }], })); }