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

invgate-mcp

v0.1.0

Published

Curated MCP server exposing InvGate Asset Management as 12 read-only tools over stdio.

Readme

invgate-mcp

A curated Model Context Protocol (MCP) server that exposes 12 read-only tools over stdio for InvGate Asset Management. Any MCP-compatible client (Claude Desktop, etc.) can query assets, people, computers, servers, software, and API health through natural language.

  • Transport: stdio only (the universal default for local agents).
  • Auth: OAuth2 client-credentials flow (scope=read), in-memory token cache with a 60-second expiry buffer and one-shot 401 retry.
  • Validation: every tool input is validated with zod; invalid input returns a structured validation_error without calling the API.
  • Resilience: HTTP, auth, and network failures are converted to MCP text content with isError: true — the server never crashes the host.
  • Distribution: published to npm, runnable via npx invgate-mcp.

Install

# Run without installing
npx invgate-mcp

# Or install globally
npm install -g invgate-mcp
invgate-mcp

Configuration

The server reads three required environment variables at startup:

| Env var | Description | Example | |---|---|---| | INVGATE_BASE_URL | InvGate public API base URL (ends with /public-api/v2) | https://acme.invgate.net/public-api/v2 | | INVGATE_CLIENT_ID | OAuth2 client ID | my-client-id | | INVGATE_CLIENT_SECRET | OAuth2 client secret | my-client-secret |

If any are missing the server prints a descriptive error to stderr and exits with code 1.

The OAuth2 token endpoint is derived from INVGATE_BASE_URL by stripping the /public-api/v2 segment and appending /oauth2/token/, so https://acme.invgate.net/public-api/v2https://acme.invgate.net/oauth2/token/.

Claude Desktop config

Add invgate-mcp to your mcpServers block (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "invgate": {
      "command": "npx",
      "args": ["-y", "invgate-mcp"],
      "env": {
        "INVGATE_BASE_URL": "https://acme.invgate.net/public-api/v2",
        "INVGATE_CLIENT_ID": "your-client-id",
        "INVGATE_CLIENT_SECRET": "your-client-secret"
      }
    }
  }
}

Tools

| Tool | Input | Behavior | |---|---|---| | invgate_list_asset_types | none | Returns all asset types | | invgate_list_assets | page, per_page, asset_type_id, criteria | Paginated asset list with optional filters | | invgate_get_asset | asset_id (required) | Single asset by ID | | invgate_list_people | page, per_page, criteria | Paginated people list | | invgate_get_person | person_id (required) | Single person by ID | | invgate_get_person_assets | person_id (required), page, per_page | Assets assigned to a person | | invgate_list_computers | page, per_page, criteria | Assets of type "computer" | | invgate_get_computer | asset_id (required) | Single computer asset | | invgate_list_servers | page, per_page, criteria | Assets of type "server" | | invgate_get_server | asset_id (required) | Single server asset | | invgate_get_health | none | API connectivity status | | invgate_list_software | page, per_page, criteria | Paginated installed-software catalog |

Parameter mapping

Tool inputs use snake_case; the server maps them to the InvGate API query parameters. per_pagepage_size, asset_type_idasset_types. The criteria object maps to InvGate's nested syntax: { "name": "cont:MacBook" } becomes criteria[name]=cont:MacBook on the query string (op examples: cont, eq, startswith, …).

Results & errors

  • Success: the raw JSON response body, pretty-printed, as MCP text content.
  • Errors: structured JSON { "error": "...", "message": "...", "status": ... } as text content with isError: true. Types: validation_error, auth_error, api_error, network_error.

Development

npm install
npm run build       # tsup → dist/index.js (single ESM bundle)
npm run typecheck   # tsc --noEmit
npm test            # vitest run (59 tests, MSW for HTTP interception)
npm run test:coverage # vitest run --coverage (80% gate on src/**)
npm run dev         # tsx src/index.ts

Requires Node.js 20+ (uses native fetch).

License

MIT