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

@zyfy-uk/mcp

v0.1.1

Published

MCP server for Zyfy — UK postcode and vehicle intelligence for Claude and other AI agents

Readme

@zyfy-uk/mcp

npm license

MCP server for Zyfy — UK postcode and vehicle intelligence for Claude, Cursor, and other AI agents.

Add this server to Claude Desktop, Claude Code, or Cursor and ask natural language questions about UK postcodes and vehicles. No code required.

Prerequisites

  • Node.js 18 or later
  • A Zyfy API key — sign up free at zyfy.uk (free tier includes 100 requests/month). Your key will look like ea_live_....

Setup

Claude Desktop

Add to your Claude Desktop configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "zyfy": {
      "command": "npx",
      "args": ["-y", "@zyfy-uk/mcp"],
      "env": {
        "ZYFY_API_KEY": "ea_live_your_key_here"
      }
    }
  }
}

Restart Claude Desktop after saving the file.

Claude Code

Add a .mcp.json file in your project root:

{
  "mcpServers": {
    "zyfy": {
      "command": "npx",
      "args": ["-y", "@zyfy-uk/mcp"],
      "env": {
        "ZYFY_API_KEY": "ea_live_your_key_here"
      }
    }
  }
}

Note: Do not commit .mcp.json if it contains your API key — add .mcp.json to your .gitignore.

For a global setup (applies to all projects), add the same block to ~/.claude.json instead.

The same .mcp.json format works in Cursor and any other MCP-compatible client.

Available tools

| Tool | Description | |---|---| | lookup_postcode | Flood risk, crime rate, broadband coverage, average property price, deprivation index (IMD), and MP details for any UK postcode | | lookup_vehicle | Make, MOT history, tax/MOT status and expiry, ULEZ compliance, safety score, and odometer trend for any UK vehicle registration | | nearest_postcode | Full enrichment data for the nearest postcode to a lat/lon coordinate | | postcodes_within | All postcodes within a radius of a lat/lon coordinate, each with full enrichment data |

See zyfy.uk/docs for the full response schema and signal reference.

Example prompts

  • What's the flood risk at SW1A 2AA?
  • Is AB12 CDE ULEZ compliant, and when does its MOT expire?
  • What's the average property price and crime rate for the postcode nearest to 51.5074, -0.1278?
  • List all postcodes within 500 metres of 51.5, -0.1 and their flood risk bands.

Quota

Each tool call uses one quota unit from your Zyfy account. postcodes_within uses one unit per postcode returned. Your remaining quota is included in every response. See zyfy.uk/pricing for plan details.

When your quota is exhausted, tools return a message with the reset date and a link to upgrade. When you hit the per-minute rate limit, tools return a message with how many seconds to wait.

If a response includes "enrichmentPending": true, Zyfy is still processing that record in the background. The result contains the best available data — retry in a few seconds for a complete result.

License

MIT