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

@id-wispera/mcp-server

v0.1.0

Published

MCP server for ID Wispera credential governance

Readme

@id-wispera/mcp-server

MCP (Model Context Protocol) server for ID Wispera credential governance.

Overview

This package provides an MCP server that allows AI agents (like Claude) to securely access governed credentials through the Model Context Protocol.

Installation

npm install @id-wispera/mcp-server

Usage

Starting the Server

# Start the MCP server
npx @id-wispera/mcp-server

# With custom vault path
IDW_VAULT_PATH=~/.my-vault/vault.json npx @id-wispera/mcp-server

Configuration with Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "id-wispera": {
      "command": "npx",
      "args": ["@id-wispera/mcp-server"],
      "env": {
        "IDW_VAULT_PATH": "/path/to/vault.json",
        "IDW_SESSION_TOKEN": "idw_st_..."
      }
    }
  }
}

Authentication: Generate a scoped session token with idw auth token create --name "claude-desktop" --scope read,list --ttl 7d and set it as IDW_SESSION_TOKEN. This avoids storing a plaintext passphrase in your config file.

Deprecated: IDW_PASSPHRASE is still accepted for backward compatibility but will be removed in a future release. Migrate to IDW_SESSION_TOKEN.

Available Tools

get_credential

Retrieve a credential by passport ID.

{
  "name": "get_credential",
  "arguments": {
    "passport_id": "uuid-of-passport",
    "purpose": "Making API call to OpenAI"
  }
}

list_passports

List available passports with optional filters.

{
  "name": "list_passports",
  "arguments": {
    "status": "active",
    "platform": "openai"
  }
}

request_access

Request access to a credential (creates audit entry, may require approval).

{
  "name": "request_access",
  "arguments": {
    "passport_id": "uuid-of-passport",
    "purpose": "Executing user-requested API call",
    "scope": ["chat", "completions"]
  }
}

check_policy

Check if an action is permitted by policy.

{
  "name": "check_policy",
  "arguments": {
    "passport_id": "uuid-of-passport",
    "action": "access"
  }
}

revoke_passport

Revoke a passport (requires confirmation).

{
  "name": "revoke_passport",
  "arguments": {
    "passport_id": "uuid-of-passport",
    "reason": "Credential exposed in logs"
  }
}

Available Resources

passport://{id}

Access passport metadata as a resource.

passport://a1b2c3d4-e5f6-7890-abcd-ef1234567890

audit://{passport_id}

Access audit trail for a passport.

audit://a1b2c3d4-e5f6-7890-abcd-ef1234567890

Security

  • All credential access is logged to the audit trail
  • Policy rules are evaluated before credential retrieval
  • The server runs locally and communicates via stdio
  • Credentials are never sent to external services

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | IDW_SESSION_TOKEN | Scoped session token (recommended) | | | IDW_VAULT_PATH | Path to vault file | ~/.id-wispera/vault.json | | IDW_LOG_LEVEL | Logging level | info | | IDW_PASSPHRASE | Vault passphrase | Deprecated -- use IDW_SESSION_TOKEN instead |

The server resolves authentication in order: IDW_SESSION_TOKEN > OS keychain > IDW_PASSPHRASE.

License

MIT