About Net Tools
Net Tools is an MCP server published by skywalkr in the Developer Tools category: mCP server for network tools like NMAP and SNMP. It has been installed 0 times through Conduid.
The repository has 1 stars and 0 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.
Install
npx mcp-net-toolsThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about Net Tools
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.
Releases
README
mcp-net-tools
MCP server for network tools like NMAP and SNMP
Usage
This MCP server works with both STDIO and StreamableHttp. SNMP authentication is provided in a separate configuration to prevent leaking credentials to your LLM(s) and follows the same convention as prometheus/snmp_exporter.
You have several options to install mcp-net tools:
-
Docker image: Use the pre-built Docker image from Docker Hub.
Important: The Docker image's entrypoint is configured to run the MCP server in StreamableHttp mode by default, but most users will want to use STDIO mode for direct integration with AI assistants like Claude Desktop:
- STDIO Mode: For stdio mode you must explicitly override the default with
--transport stdio:
docker pull skywalkr79/mcp-net-tools docker run --rm -i skywalkr79/mcp-net-tools --transport stdio- Streamable HTTP Mode: In this mode, the server operates as an independent process that can handle multiple client connections. You must expose port 8000 using the
-pflag: For this mode you must explicitly override the default with--transport http
docker pullskywalkr79/mcp-net-tools docker run --rm -p 8000:8000 skywalkr79/mcp-net-tools --transport http - STDIO Mode: For stdio mode you must explicitly override the default with
-
Download binary: Download the latest release of
mcp-net-toolsfrom the releases page and place it in your$PATH.
Using VSCode with remote MCP server
If you're using VSCode and running the MCP server in SSE mode (which is the default when using the Docker image without overriding the transport), make sure your .vscode/settings.json includes the following:
"mcp": {
"servers": {
"mcp-net-tools": {
"type": "http",
"url": "http://localhost:8000/"
}
}
}
README mirrored from the source repository 2 days ago. The original is authoritative.