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

@wordbricks/fetch-mcp

v1.3.0

Published

Model Context Protocol (MCP) server for fetching data from the web

Readme

@wordbricks/fetch-mcp

A Model Context Protocol (MCP) server for fetching data from the web. This server provides AI models with the ability to fetch and process web content.

Features

  • Fetch web pages and APIs
  • Multiple transport modes (stdio, HTTP)
  • Easy integration with MCP-compatible AI tools
  • Command-line interface for standalone usage

Usage

Basic Usage

Start the MCP server with default stdio transport:

bunx @wordbricks/fetch-mcp@latest

HTTP Mode

Start the server in HTTP mode:

bunx @wordbricks/fetch-mcp@latest --transport=http --port=3000

Command Line Options

Usage: npx @wordbricks/fetch-mcp [options]

Options:
  --transport=<type>  Transport type: stdio, http (default: stdio)
  --port=<number>     Port for HTTP transport (default: 11891)
  --help, -h          Show this help message

Examples:
  npx @wordbricks/fetch-mcp
  npx @wordbricks/fetch-mcp --transport=stdio
  npx @wordbricks/fetch-mcp --transport=http --port=3000

Integration with AI Tools

This MCP server can be integrated with various AI tools that support the Model Context Protocol. Configure your AI tool to connect to this server using the appropriate transport method.

Claude Desktop Integration

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "fetch": {
      "command": "bunx",
      "args": ["@wordbricks/fetch-mcp@latest"]
    }
  }
}

Development

Prerequisites

  • Bun v1.2.15 or later

Setup

bun install

Development Mode

bun run dev

Build

bun run build

Testing

bun test

Publishing to npm

Automated Releases (Recommended)

This project uses GitHub Actions for automated releases. When you push a version change to the main branch, it will automatically:

  1. Build and test the package
  2. Publish to npm
  3. Create a GitHub release

To trigger an automated release:

  1. Update the version in package.json:

    # For a patch release
    npm version patch
    
    # For a minor release
    npm version minor
    
    # For a major release
    npm version major
  2. Push to main:

    git push origin main --follow-tags

Prerequisites for automated releases:

  • Set the NPM_TOKEN secret in your GitHub repository settings
  • The token should have publish permissions for the @wordbricks scope

Manual Publishing

  1. Ensure you're logged into npm:

    npm login
  2. Update the version in package.json

  3. Build and publish:

    bun run build
    npm publish --access public

The prepublishOnly script will automatically build the package before publishing.

Note: The --access public flag is required for scoped packages (packages starting with @) to make them publicly accessible. This is also configured in package.json under publishConfig.

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.