PluginBench
MCP Server
Active
Apache-2.0

NetLens MCP Server

io.github.pzalutski-pixel/netlens

What is the NetLens MCP server?

Read any web page as clean, ad-stripped Markdown past robots.txt and bot blocks, plus web search.

How to install NetLens

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • NETLENS_SEARCH_ENGINE

    Default search backend: auto, duckduckgo, bing, mojeek, or searxng

  • NETLENS_SEARXNG_URL

    Base URL of a SearXNG instance to use when engine=searxng (e.g. https://searx.example.org)

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "netlens": {
      "command": "npx",
      "args": [
        "-y",
        "netlens-mcp"
      ],
      "env": {
        "NETLENS_SEARCH_ENGINE": "<YOUR_NETLENS_SEARCH_ENGINE>",
        "NETLENS_SEARXNG_URL": "<YOUR_NETLENS_SEARXNG_URL>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "netlens": {
      "command": "npx",
      "args": [
        "-y",
        "netlens-mcp"
      ],
      "env": {
        "NETLENS_SEARCH_ENGINE": "<YOUR_NETLENS_SEARCH_ENGINE>",
        "NETLENS_SEARXNG_URL": "<YOUR_NETLENS_SEARXNG_URL>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "netlens": {
      "command": "npx",
      "args": [
        "-y",
        "netlens-mcp"
      ],
      "env": {
        "NETLENS_SEARCH_ENGINE": "<YOUR_NETLENS_SEARCH_ENGINE>",
        "NETLENS_SEARXNG_URL": "<YOUR_NETLENS_SEARXNG_URL>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "netlens": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "netlens-mcp"
      ],
      "env": {
        "NETLENS_SEARCH_ENGINE": "<YOUR_NETLENS_SEARCH_ENGINE>",
        "NETLENS_SEARXNG_URL": "<YOUR_NETLENS_SEARXNG_URL>"
      }
    }
  }
}
Claude Code
claude mcp add netlens --env NETLENS_SEARCH_ENGINE=<YOUR_NETLENS_SEARCH_ENGINE> --env NETLENS_SEARXNG_URL=<YOUR_NETLENS_SEARXNG_URL> -- npx -y netlens-mcp

Related MCP servers

JavaLens

Maintained

63 semantic Java analysis tools via Eclipse JDT: navigation, refactoring, code intelligence.

37
Java
MIT
View repository →

SharpLens

Active

67 semantic C#/.NET analysis tools via Roslyn: navigation, refactoring, codegen, audit.

32
C#
MIT
View repository →

GodotLens

Active

Godot's own view of your GDScript project: navigation, diagnostics, engine API, scene checks

4
Python
Apache-2.0
View repository →