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

legismcp

v0.3.13

Published

Open-source MCP server for U.S. legislative data from Congress.gov

Readme

LegisMCP - Open-Source Legislative MCP Server

An open-source Model Context Protocol (MCP) server that provides AI agents with real-time access to U.S. legislative data from Congress.gov.

Quick Start

A Congress.gov API key is required. Get a free one at api.congress.gov/sign-up.

Claude Desktop / Cursor / Windsurf

Add to your MCP configuration:

{
  "mcpServers": {
    "legismcp": {
      "command": "npx",
      "args": ["-y", "legismcp"],
      "env": {
        "CONGRESS_API_KEY": "your-api-key"
      }
    }
  }
}

That's it — no cloning or installing required.

Remote Connection

Connect via the hosted endpoint — no local installation needed:

{
  "mcpServers": {
    "legismcp": {
      "type": "http",
      "url": "https://mcp.legismcp.com/mcp",
      "headers": {
        "X-Congress-API-Key": "your-api-key"
      }
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | get-bill | Get detailed information about a specific bill | | list-recent-bills | List recent bills with filtering by congress, sort, and pagination | | analyze-bill | Comprehensive analysis of a bill's content, impact, and implications | | trending-bills | Get trending legislative activity by timeframe and category | | member-details | Get details about a specific member of Congress by bioguide ID | | member-search | Search for members by name, state, or party | | subresource | Access bill sub-resources (actions, amendments, cosponsors, etc.) |

Example Queries

Once connected, ask your AI agent:

  • "What bills were introduced this week about healthcare?"
  • "Show me the details of HR 1234 from the 118th Congress"
  • "Who are the senators from California?"
  • "What's trending in Congress right now?"
  • "Analyze the CHIPS Act and its economic implications"

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | CONGRESS_API_KEY | Yes | Congress.gov API key (get one free) |

Architecture

AI Agent <-> MCP Server <-> Congress.gov API
              (stdio)
  • Runs as a local Node.js process, communicates via stdin/stdout
  • Data source: Congress.gov API

License

MIT - See LICENSE