1. Conduid
  2. Developer Tools
  3. Net Tools
MCP server · Developer Tools

Net Tools

MCP server for network tools like NMAP and SNMP.

Unclaimed MIT last commit a year ago devtools
49Fair

Scored 2 days ago · breakdown

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

Install
npx mcp-net-tools

This 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

I know everything about Net Tools. Ask me about installation, configuration, usage, or troubleshooting.

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

v0.1.0v0.1.0 · 12 Aug 2025Initial release of the net tools MCP server, `mcp-net-tools`.

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:

    1. 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
    
    1. 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 -p flag: 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
    
  • Download binary: Download the latest release of mcp-net-tools from 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.

Questions

About Net Tools

How do I install Net Tools?

Run npx mcp-net-tools, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Net Tools safe to use with an AI agent?

Its trust score is 49 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Net Tools still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.