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

@quercle/mcp

v3.0.1

Published

MCP server for Quercle - AI-powered web fetching and search

Downloads

69

Readme

@quercle/mcp

An MCP server for Quercle — AI-powered web search and fetch.

Gives Claude (and any MCP client) the ability to search the web and fetch + analyze pages.

Quick Start

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "quercle": {
      "command": "npx",
      "args": ["-y", "@quercle/mcp"],
      "env": {
        "QUERCLE_API_KEY": "qk_..."
      }
    }
  }
}

Restart Claude Desktop. You'll see the Quercle tools available in the chat.

Claude Code

claude mcp add --transport stdio --env QUERCLE_API_KEY=qk_... quercle -- npx -y @quercle/mcp

Global Install (alternative)

npm install -g @quercle/mcp

Then reference quercle-mcp instead of npx -y @quercle/mcp in your config.

Setup

Get your API key at quercle.dev and set it in the config as shown above.

Tools

The server exposes five tools:

search

Search the web and get an AI-synthesized answer with citations.

| Parameter | Required | Description | |---|---|---| | query | Yes | The search query | | allowedDomains | No | Only return results from these domains | | blockedDomains | No | Exclude results from these domains |

fetch

Fetch a URL and analyze its content with AI.

| Parameter | Required | Description | |---|---|---| | url | Yes | The URL to fetch | | prompt | Yes | Instructions for how to analyze the page content |

raw_search

Search the web and get raw results (without AI synthesis).

| Parameter | Required | Description | |---|---|---| | query | Yes | The search query | | format | No | Response format: markdown (default) or json | | useSafeguard | No | Enable content safeguards (boolean) |

raw_fetch

Fetch raw content from a URL without AI processing.

| Parameter | Required | Description | |---|---|---| | url | Yes | The URL to fetch | | format | No | Response format: markdown (default) or html | | useSafeguard | No | Enable content safeguards (boolean) |

extract

Extract relevant content from a URL based on a query.

| Parameter | Required | Description | |---|---|---| | url | Yes | The URL to extract content from | | query | Yes | What to extract from the page | | format | No | Response format: markdown (default) or json | | useSafeguard | No | Enable content safeguards (boolean) |

Troubleshooting

| Issue | Solution | |---|---| | "Missing API key" | Set QUERCLE_API_KEY in the env section of your config | | "Invalid API key" | Check your key starts with qk_ and is valid at quercle.dev | | Timeout errors | The API may take up to 60s for complex queries — this is normal | | Server not connecting | Run npx -y @quercle/mcp directly to check for errors |

License

MIT