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

@skylerwlewis/fmgf-mcp

v1.0.8

Published

MCP server for searching findmeglutenfree.com

Downloads

269

Readme

fmgf-mcp

An MCP (Model Context Protocol) server that lets AI assistants search findmeglutenfree.com for gluten-free restaurants and businesses near a given coordinate pair.

Features

  • Searches findmeglutenfree.com/search with filter options similar to those available in the website's UI
  • Accepts lat and lng coordinates directly — use your AI model or another geocoding source to convert an address to coordinates before calling the tool
  • Optional login support to unlock Max Distance filtering and Last Reviewed sorting (credentials provided via environment variables)
  • Returns structured results: name, URL, star rating, review count, address, distance, price/category, dedicated-GF status, GF menu items, and a featured review snippet

Installation

Requires Node.js ≥ 18 for npx to work.

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "findmeglutenfree": {
      "command": "npx",
      "args": ["-y", "@skylerwlewis/fmgf-mcp"]
    }
  }
}

VS Code / Copilot Chat

Add to your .vscode/mcp.json in your workspace, or your user-level mcp.json:

{
  "servers": {
    "findmeglutenfree": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@skylerwlewis/fmgf-mcp"]
    }
  }
}

With Login Credentials

Some features require a findmeglutenfree.com account (see Optional Login). Pass your credentials as environment variables:

Claude Desktop

{
  "mcpServers": {
    "findmeglutenfree": {
      "command": "npx",
      "args": ["-y", "@skylerwlewis/fmgf-mcp"],
      "env": {
        "FMGF_USERNAME": "[email protected]",
        "FMGF_PASSWORD": "your-password"
      }
    }
  }
}

VS Code / Copilot Chat

{
  "servers": {
    "findmeglutenfree": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@skylerwlewis/fmgf-mcp"],
      "env": {
        "FMGF_USERNAME": "[email protected]",
        "FMGF_PASSWORD": "your-password"
      }
    }
  }
}

Security note: These config files are local and not transmitted anywhere by the MCP framework. Treat them like any config file containing secrets — do not commit them to a public repository.


Search Tool

The server exposes one tool: search

Parameters

These parameters match the filter fields on findmeglutenfree.com/search as closely as possible.

| Parameter | Type | Required | Default | Description | |---|---|---|---|---| | q | string | No | — | What are you looking for? (Optional) — e.g. "pizza", "Thai food", "bakery" | | lat | number | Yes | — | Latitude in decimal degrees from -90 to 90. | | lng | number | Yes | — | Longitude in decimal degrees from -180 to 180. | | business_type | enum | No | "Chains and Local Businesses" | "Chains and Local Businesses" or "Local Businesses Only" | | gluten_free_filter | enum | No | "Show All Businesses" | "Show All Businesses" · "Dedicated Gluten-Free" · "Gluten-Free Menus" · "Most Celiac Friendly" | | sort | enum | No | "Best Match" | "Best Match" · "Rating" · "Distance" · "Last Reviewed" (requires login) | | max_distance | integer (miles) | No | — | Maximum search radius in miles (requires login). UI presets: 1, 2, 5, 10, 15, 20, 25, 50 — any positive integer accepted. |

Both lat and lng are required for every search. If you only have a street address or city name, ask your AI model to convert it to decimal coordinates first.


Optional Login

Some features require a findmeglutenfree.com account:

  • Max Distance filtering (max_distance parameter)
  • Last Reviewed sorting (sort: "Last Reviewed")

Credentials are passed as environment variables (see Installation above). The server reads them at startup, logs in automatically, and stores the session cookie for all subsequent searches within the same process.

| Variable | Description | |---|---| | FMGF_USERNAME | Your findmeglutenfree.com account email address | | FMGF_PASSWORD | Your findmeglutenfree.com account password |

Both variables must be set together. If only one is provided, or if login fails, the server continues running — only the login-gated features will be unavailable.


Development

# Install dependencies
npm install

# Run directly with tsx (no build step needed)
npm run dev

# Or compile TypeScript and run
npm run build && npm start