npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@fnnm/fetch

v0.1.0

Published

A Model Context Protocol server providing tools to fetch and convert web content

Readme

Fetch MCP Server

A Model Context Protocol (MCP) server that fetches URLs and converts HTML/PDF to Markdown for LLMs. TypeScript/Node port of the original mcp-server-fetch2, communicating over stdio.

[!CAUTION] This server can access local/internal IP addresses and may represent a security risk. Exercise caution to ensure it does not expose sensitive data.

The fetch tool truncates the response; use the start_index argument to page through content in chunks until the model finds what it needs.

Available Tools

  • fetch — Fetches a URL and extracts its contents as markdown (HTML) or text (PDF).
    • url (string, required): URL to fetch
    • max_length (integer, optional): Maximum characters to return (default: 5000)
    • start_index (integer, optional): Start content from this character index (default: 0)
    • raw (boolean, optional): Return raw content without markdown conversion (default: false)

Prompts

  • fetch — Fetch a URL and extract its contents as markdown.
    • Arguments:
      • url (string, required): URL to fetch

Installation

Requires Node.js 18+.

git clone https://github.com/fxcl/fetch.git
cd fetch
npm install
npm run build

The server runs as node dist/index.js. package.json declares a bin field, so once published npx @fnnm/fetch will also work.

Configuration

Configure for Claude.app / Claude Desktop

Add to your Claude settings:

{
  "mcpServers": {
    "fetch": {
      "command": "node",
      "args": ["/abs/path/to/fetch/dist/index.js"]
    }
  }
}
{
  "mcpServers": {
    "fetch": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/fetch"]
    }
  }
}

Configure for VS Code

Add the following to .vscode/mcp.json in your workspace, or to your User Settings (JSON) via Ctrl+Shift+PPreferences: Open User Settings (JSON). The mcp key is required when using mcp.json.

{
  "mcp": {
    "servers": {
      "fetch": {
        "command": "node",
        "args": ["/abs/path/to/fetch/dist/index.js"]
      }
    }
  }
}
{
  "mcp": {
    "servers": {
      "fetch": {
        "command": "docker",
        "args": ["run", "-i", "--rm", "mcp/fetch"]
      }
    }
  }
}

Behavior — robots.txt

The server obeys a site's robots.txt when the request comes from the model (via the fetch tool), but bypasses it when the request is user-initiated (via the fetch prompt). This behavior is fixed in the implementation; there is no CLI flag to toggle it.

Behavior — User-agent

The server sends one of two fixed user-agents depending on whether the request is model-initiated (tool) or user-initiated (prompt):

ModelContextProtocol/1.0 (Autonomous; +https://github.com/modelcontextprotocol/servers)
ModelContextProtocol/1.0 (User-Specified; +https://github.com/modelcontextprotocol/servers)

The user-agent is not configurable.

Behavior — Proxy

The server honors the HTTPS_PROXY / HTTP_PROXY environment variables (lowercase variants too), wired through an undici ProxyAgent. To set a proxy in mcpServers, add an env block:

{
  "mcpServers": {
    "fetch": {
      "command": "node",
      "args": ["/abs/path/to/fetch/dist/index.js"],
      "env": {
        "HTTPS_PROXY": "http://user:[email protected]:8080"
      }
    }
  }
}

Debugging

Use the MCP inspector:

npx @modelcontextprotocol/inspector node dist/index.js

Contributing

Pull requests welcome. For examples of other MCP servers and implementation patterns, see https://github.com/modelcontextprotocol/servers.

License

MIT. See LICENSE.