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

@getparafe/mcp-server

v0.2.0

Published

MCP tool server for the Parafe Trust Broker — add trust handshakes to any MCP-compatible AI agent

Readme

@getparafe/mcp-server

MCP tool server for the Parafe Trust Broker. Add trust handshakes to any MCP-compatible AI agent with zero code changes.

What This Does

Parafe is a neutral trust broker for agent-to-agent interactions. This MCP server exposes Parafe's trust operations — agent registration, mutual authentication, scoped consent, and signed receipts — as MCP tools that any LLM agent can call.

Add a JSON config block. Your agent gets trust handshakes.

Quick Start

1. Get Credentials

Sign up at platform.parafe.ai and create an API key.

2. Configure Your MCP Client

Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "parafe-trust": {
      "command": "npx",
      "args": ["@getparafe/mcp-server"],
      "env": {
        "PARAFE_BROKER_URL": "https://parafe-production-9bc9.up.railway.app",
        "PARAFE_API_KEY": "prf_key_live_...",
        "PARAFE_CREDENTIALS_PASSPHRASE": "your-passphrase"
      }
    }
  }
}

Claude Code (.claude/settings.json):

{
  "mcpServers": {
    "parafe-trust": {
      "command": "npx",
      "args": ["@getparafe/mcp-server"],
      "env": {
        "PARAFE_BROKER_URL": "https://parafe-production-9bc9.up.railway.app",
        "PARAFE_API_KEY": "prf_key_live_..."
      }
    }
  }
}

Cursor (.cursor/mcp.json):

{
  "mcpServers": {
    "parafe-trust": {
      "command": "npx",
      "args": ["@getparafe/mcp-server"],
      "env": {
        "PARAFE_BROKER_URL": "https://parafe-production-9bc9.up.railway.app",
        "PARAFE_API_KEY": "prf_key_live_..."
      }
    }
  }
}

3. Use It

Your agent now has 13 trust tools. The typical flow:

  1. Discoverparafe_discover fetches the target agent's agent card to learn its trust requirements
  2. Registerparafe_register creates your agent's cryptographic identity (once, persisted)
  3. Handshakeparafe_initiate_handshake starts mutual authentication; the target calls parafe_complete_handshake
  4. Interactparafe_verify_consent and parafe_record_action govern the scoped exchange
  5. Closeparafe_close_session generates a signed receipt both parties can verify

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | PARAFE_BROKER_URL | Yes | — | Parafe broker API URL | | PARAFE_API_KEY | Yes | — | API key from the developer portal | | PARAFE_CREDENTIALS_PATH | No | ~/.parafe/credentials.enc | Encrypted credential file path | | PARAFE_CREDENTIALS_PASSPHRASE | No | — | Passphrase for credential encryption. If not set, credentials are held in memory only. |

Available Tools

| Tool | Description | |------|-------------| | parafe_discover | Fetch a target agent's agent card to learn its Parafe trust requirements | | parafe_register | Register a new agent identity with Ed25519 cryptographic credentials | | parafe_initiate_handshake | Start mutual authentication with a target agent | | parafe_complete_handshake | Complete a handshake initiated by another agent | | parafe_escalate_scope | Request additional scope within an existing session | | parafe_verify_consent | Check if an action is permitted by a consent token | | parafe_record_action | Log an action within an active session | | parafe_close_session | Close a session and generate a signed receipt | | parafe_verify_receipt | Verify a receipt's Ed25519 signature | | parafe_revoke_agent | Revoke an agent identity | | parafe_renew_credential | Renew a credential to the org's current verification tier | | parafe_update_scope_policies | Update an agent's accepted scope policies | | parafe_get_public_key | Get the broker's Ed25519 public key |

Resources

| URI | Description | |-----|-------------| | parafe://agent | Current agent identity and credential status | | parafe://session/{sessionId} | Session details, participants, consent tokens | | parafe://public-key | Broker's Ed25519 public key |

Transports

stdio (default) — standard for local MCP clients:

npx @getparafe/mcp-server

Streamable HTTP — for hosted/remote deployments:

npx @getparafe/mcp-server --transport=http --port=3001

Connect to http://localhost:3001/mcp from your MCP client.

How It Works

This MCP server wraps the @getparafe/sdk. Each tool call maps to an SDK method. The SDK handles Ed25519 cryptography, challenge signing, and credential encryption internally.

MCP Client (Claude, Cursor, etc.)
    ↓ MCP protocol
@getparafe/mcp-server
    ↓ SDK method calls
@getparafe/sdk
    ↓ HTTPS
Parafe Broker API

Development

npm install
npm run build
npm test

License

MIT