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

mcp-uspto

v0.1.2

Published

MCP server for USPTO — search patents, trademarks, assignments, PTAB decisions, and inventor/assignee data. No API key required for core tools.

Readme

mcp-uspto

MCP server for USPTO — search patents, trademarks, assignments, PTAB decisions, and inventor/assignee data.

13 tools. All require free API keys (no paid tiers).

Quick Start

  1. Get a free API key at data.uspto.gov/apis/getting-started
  2. Add to your MCP config:
{
  "mcpServers": {
    "uspto": {
      "command": "npx",
      "args": ["-y", "mcp-uspto"],
      "env": {
        "USPTO_API_KEY": "your-odp-key-here"
      }
    }
  }
}

This unlocks 9 tools. For all 13, add the optional keys below.

Tools

Open Data Portal (USPTO_API_KEY)

| Tool | Description | |------|-------------| | uspto_patent_search | Search patents by keyword — entry point for all patent research | | uspto_patent_details | Title, abstract, inventors, assignee, classification, status | | uspto_patent_documents | List file wrapper docs (office actions, responses, claims) | | uspto_patent_assignments | Ownership transfers, security interests for an application | | uspto_patent_status | Full prosecution timeline from filing to grant/abandonment | | uspto_patent_continuity | Patent family tree — continuations, divisionals, CIPs, provisionals | | uspto_patent_foreign_priority | Foreign priority claims — linked international filings | | uspto_ptab_decisions | PTAB trial decisions (IPR, PGR, CBM) | | uspto_ptab_proceedings | PTAB trial proceedings — active and concluded patent challenges |

PatentsView (USPTO_PATENTSVIEW_API_KEY)

| Tool | Description | |------|-------------| | uspto_patentsview_search | Rich search with CPC, date, assignee filters | | uspto_inventor_search | Find inventors and patent portfolios | | uspto_assignee_search | Company IP landscape analysis |

Register free at patentsview.org

TSDR (USPTO_TSDR_API_KEY)

| Tool | Description | |------|-------------| | uspto_trademark_status | Trademark status, owner, goods/services |

Register free at developer.uspto.gov

Full Config (all keys)

{
  "mcpServers": {
    "uspto": {
      "command": "npx",
      "args": ["-y", "mcp-uspto"],
      "env": {
        "USPTO_API_KEY": "your-odp-key",
        "USPTO_PATENTSVIEW_API_KEY": "your-patentsview-key",
        "USPTO_TSDR_API_KEY": "your-tsdr-key"
      }
    }
  }
}

Tools return a helpful setup message (not an error) when their key is missing.

Example Queries

  • "Search for CRISPR gene editing patents" → uspto_patent_search
  • "Show me the prosecution history for application 16/123,456" → uspto_patent_status
  • "What's the patent family for this application?" → uspto_patent_continuity
  • "Does this patent claim foreign priority?" → uspto_patent_foreign_priority
  • "Get assignment records for application 16/123,456" → uspto_patent_assignments
  • "Find PTAB challenges against patent 10,234,567" → uspto_ptab_decisions
  • "What active PTAB proceedings involve Samsung?" → uspto_ptab_proceedings
  • "What patents does Apple hold in display technology?" → uspto_assignee_search
  • "Look up trademark serial number 97123456" → uspto_trademark_status

Rate Limits

Built-in token-bucket rate limiting per API:

  • Open Data Portal: 10 req/sec
  • PatentsView: 45 req/min
  • TSDR: 60 req/min

License

MIT