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

@buildbench/schema-generator-mcp

v1.0.0

Published

MCP server that generates proper Schema.org JSON-LD markup for local businesses, law firms, dental practices, contractors, and other service businesses. Pairs with @buildbench/seo-defect-scanner-mcp to find AND fix structured-data defects from inside Curs

Readme

Schema Generator MCP

Generate Schema.org JSON-LD markup for local businesses, law firms, dental practices, contractors, and other service businesses. Works with Cursor, Claude Desktop, Continue, and any MCP-compatible client.

Pairs with @buildbench/seo-defect-scanner-mcp — find defects with the scanner, fix them by generating proper schema with this tool.

What it generates

18 supported Schema.org business types:

| Type | Use for | |---|---| | LocalBusiness | Generic local business (default if no specific type fits) | | LegalService | Law firm, attorney office | | Attorney | Individual attorney (sole practitioner) | | Dentist | Dental practice | | MedicalBusiness | Medical clinic, doctor's office | | HVACBusiness | HVAC contractor | | Plumber | Plumbing contractor | | RoofingContractor | Roofing contractor | | VeterinaryCare | Vet clinic, animal hospital | | HealthAndBeautyBusiness | Med spa, aesthetics, salon | | InsuranceAgency | Insurance broker / agency | | FinancialService | Financial advisor, mortgage broker | | RealEstateAgent | Real estate brokerage | | Optician | Optometry clinic | | ChildCare | Daycare, preschool | | ExerciseGym | Gym, pilates, yoga studio | | AccountingService | CPA, accounting firm | | LandscapingBusiness | Landscaping contractor |

Each generator returns a ready-to-paste <script type="application/ld+json"> block with proper @context: "https://schema.org", full PostalAddress, OpeningHoursSpecification, aggregateRating, geo coordinates, areaServed, and sameAs social profiles.

Installation

Cursor

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "schema-generator": {
      "command": "npx",
      "args": ["-y", "@buildbench/schema-generator-mcp"]
    }
  }
}

Claude Desktop

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

{
  "mcpServers": {
    "schema-generator": {
      "command": "npx",
      "args": ["-y", "@buildbench/schema-generator-mcp"]
    }
  }
}

Restart your editor after adding the config.

Usage examples

"Generate LegalService schema for a PI law firm in Mississauga at 123 Main St, phone 905-555-1234, open Mon-Fri 9am-5pm."

"I'm building a dental practice site. Generate Dentist schema with 4.8 stars from 200 reviews."

"List all supported schema types."

The MCP returns the JSON-LD block + Google Rich Results Test validation URL + a link to the productized fix at buildbench.ca/audit if the user wants the full deploy done for them.

Why proper schema matters

Most service businesses in 2026 have at least one of these schema defects:

  • og:locale="en_US" on Canadian businesses
  • Empty PostalAddress block ("address": {})
  • Placeholder "priceRange": "$"
  • Wrong @context (http://schema.org instead of https://schema.org)
  • Missing LocalBusiness type entirely (only generic Organization)
  • Dead Google Plus sameAs links

This MCP generates schema that avoids all of those. The 2026-correct defaults are:

  • @context: "https://schema.org" (with HTTPS, not HTTP)
  • addressCountry: "CA" for Canadian businesses
  • No priceRange field if not provided (better than a placeholder)
  • No sameAs field if not provided
  • Real OpeningHoursSpecification blocks (not flat "openingHours": "..." strings)

Validation

After pasting the generated schema into your page, validate at:

  • Google Rich Results Test: https://search.google.com/test/rich-results
  • Schema.org Validator: https://validator.schema.org/

Both are free, instant.

License

MIT.

Built by

Build Bench — solo operator in Mississauga, Ontario building productized SEO and AI lead-capture tools for Canadian service businesses.

Contact: [email protected]

Companion tools