Pingo Network
FreeNot checkedPingo is a local MCP server that lets your AI agent debug your network in plain language: ping, subnet sweep, traceroute, DNS lookup, port scan, ARP table, acti
About
Pingo is a local MCP server that lets your AI agent debug your network in plain language: ping, subnet sweep, traceroute, DNS lookup, port scan, ARP table, active connections, and URL reachability. Small, validated, and easy to extend.
README
An MCP server exposing a full toolkit for debugging your local network, wired through a clean service-per-concern architecture so it's easy to extend.
Tools exposed
| Tool | What it does |
|---|---|
get_network_interfaces |
Lists local IPv4 interfaces (name, IP, netmask, MAC) |
ping_device |
Pings a single IPv4 address, reports alive/latency |
ping_sweep |
Sweeps a /24-/32 CIDR to discover live hosts (concurrency-limited) |
traceroute |
OS-native traceroute/tracert to a host or IP |
dns_lookup |
Resolves a hostname to its IPv4/IPv6 addresses |
reverse_dns_lookup |
Resolves an IP back to hostname(s) |
check_port |
Checks if a single TCP port is open |
scan_port_range |
Scans a range of TCP ports (max 1024 span) via raw sockets |
get_arp_table |
Reads the OS ARP cache -> IP-to-MAC mappings on the LAN |
get_active_connections |
Lists active connections via netstat, optional port filter |
check_http_reachability |
Checks if an HTTP(S) endpoint responds, with status + latency |
Design notes
- One service per concern (
src/services/*) - each does exactly one job and is injected into the controller, so adding a new diagnostic (e.g. MTU discovery, bandwidth test) means adding one new service + oneregisterToolcall, nothing else changes. - No shell injection surface. Every OS command runs through
execFile(argv array, never a shell string), and every input is validated against a strict allow-list (src/utils/validators.ts) before it ever reaches a command or socket. - Bounded by default. Port scans cap at a 1024-port span, sweeps cap at
/24, everything has a timeout - so a bad input can't hang the process or turn into an unbounded network scan. - DNS uses Node's native
dns/promises, not a shell command at all - one less exec surface for the riskiest-sounding tool.
Run it
pnpm install
pnpm dev # tsx src/index.ts, hot-reload dev mode
pnpm build && pnpm start # compiled prod run
Server listens on http://localhost:3000/mcp.
Extending it
- Add
src/services/YourService.tsimplementing anIYourServiceinterface (mirror the existing services - constructor-free, one focused method or two). - Add it to
PingoServicesinPingoMcpController.tsand instantiate it insrc/index.ts. - Add one
server.registerTool(...)block inregisterTools().
That's the whole extension surface - no other files need to change.
Installing Pingo Network
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/Kevin-Rozario/pingo-network-mcpFAQ
Is Pingo Network MCP free?
Yes, Pingo Network MCP is free — one-click install via Unyly at no cost.
Does Pingo Network need an API key?
No, Pingo Network runs without API keys or environment variables.
Is Pingo Network hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Pingo Network in Claude Desktop, Claude Code or Cursor?
Open Pingo Network on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
Roblox Studio
Enables AI coding tools to control Roblox Studio for workspace exploration, instance manipulation, and script management. It provides tools for playtesting, sce
by paralovAWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzMCP-Agent
A simple, composable framework to build agents using Model Context Protocol by [LastMile AI](https://www.lastmileai.dev)
by lastmile-aiSpring AI MCP Client
Provides auto-configuration for MCP client functionality in Spring Boot applications.
mcp.natoma.ai
A Hosted MCP Platform to discover, install, manage and deploy MCP servers by [Natoma Labs](https://www.natoma.ai)
MCPHub
Website to list high quality MCP servers and reviews by real users. Also provide online chatbot for popular LLM models with MCP server support.
MCP Servers Rating and User Reviews
Website to rate MCP servers, write authentic user reviews, and [search engine for agent & mcp](http://www.deepnlp.org/search/agent)
Compare Pingo Network with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
