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

govera-mcp-server

v0.1.0

Published

Official Model Context Protocol (MCP) server for Govera — exposes the Govera public API (status, product, capabilities, guides) as AI-callable tools over stdio. Governance platform for public agencies.

Downloads

164

Readme

govera-mcp-server

Official Model Context Protocol (MCP) server for Govera, the governance platform for public agencies. It exposes Govera's public, read-only, zero-auth product API as four AI-callable tools over stdio, so any MCP client (Claude Desktop, Claude Code, and other MCP-compatible agents) can look up Govera's status, product metadata, capabilities, and guides.

This server contains no agency, tenant, or user data — it only surfaces static, public information.

Install / run

No installation step is required. Any MCP client that can launch a stdio subprocess can run this server directly via npx:

npx -y govera-mcp-server

The server communicates over stdio using the MCP protocol; it is not meant to be run interactively from a terminal.

Claude Desktop / MCP client configuration

Add this to your MCP client's server configuration (for Claude Desktop, claude_desktop_config.json):

{
  "mcpServers": {
    "govera": {
      "command": "npx",
      "args": ["-y", "govera-mcp-server"]
    }
  }
}

Tools

| Tool | Description | |---|---| | get_status | Get the operational status, version, and current timestamp of the Govera Public API. | | get_product | Get public metadata about Govera: name, description, the categories of public agency it serves, and its home URL. | | list_capabilities | List Govera's product capabilities, each with a stable id, name, and description. | | list_guides | List the public Govera platform guides, each with a title and URL. |

None of the tools take any input — every inputSchema is {"type":"object","properties":{},"additionalProperties":false}. Each tool call performs a single unauthenticated GET against the Govera public API and returns the JSON response as MCP text content. A network error, non-2xx HTTP status, or invalid JSON body produces an MCP error result (isError: true) with a descriptive message instead of throwing.

Configuration

| Env var | Default | Purpose | |---|---|---| | GOVERA_API_BASE | https://www.govera.co/api/v1 | Override the base URL the server calls. Useful for pointing the server at a local or staging deployment during development. |

Public manifest and API docs

Development

npm install
npm test

The tool logic lives in src/tools.js as plain, dependency-free async functions (one per tool) plus a TOOLS registry consumed by the server wiring in src/index.js. src/tools.js has no dependency on the MCP SDK, so tests/tools.test.js exercises it directly with a mocked global.fetch. src/index.js wires the same TOOLS registry into an MCP Server over StdioServerTransport.

License

MIT