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

@frontmcp/plugin-approval

v0.7.2

Published

Approval plugin for FrontMCP - tool authorization workflow with PKCE webhook security

Downloads

361

Readme

@frontmcp/plugin-approval

Tool authorization workflow with PKCE webhook security for FrontMCP.

Features

  • Tool Approval Checking: Automatic approval check before tool execution via hook
  • Multiple Approval Scopes: SESSION, USER, TIME_LIMITED, TOOL_SPECIFIC, CONTEXT_SPECIFIC
  • PKCE Webhook Security: RFC 7636 compliant PKCE for secure external approval systems
  • Recheck Mode: Poll external API for approval status
  • Full Audit Trail: Track who approved/revoked and when
  • Context Extension: Use this.approval in tools

Installation

npm install @frontmcp/plugin-approval

Usage

Basic Setup

import { ApprovalPlugin } from '@frontmcp/plugin-approval';

// Create plugin with default settings
const plugin = ApprovalPlugin.init();

// Install into scope
await plugin.install(scope);

With Webhook Mode

const plugin = ApprovalPlugin.init({
  mode: 'webhook',
  webhook: {
    url: 'https://approval.example.com/webhook',
    challengeTtl: 300, // 5 minutes
    callbackPath: '/approval/callback',
  },
});

Using in Tools

import { Tool, ToolContext } from '@frontmcp/sdk';

@Tool({
  name: 'dangerous_operation',
  approval: {
    required: true,
    defaultScope: 'session',
    category: 'write',
    riskLevel: 'high',
    approvalMessage: 'Allow dangerous operation?',
  },
})
class DangerousTool extends ToolContext {
  async execute() {
    // This tool requires approval before execution
    // The approval hook automatically checks and throws ApprovalRequiredError if needed

    // You can also programmatically check/grant approvals:
    const approved = await this.approval.isApproved('other-tool');
    await this.approval.grantSessionApproval('helper-tool');
  }
}

Approval Scopes

| Scope | Description | | ------------------ | ------------------------------------------- | | SESSION | Valid for current session only | | USER | Persists across sessions for the user | | TIME_LIMITED | Expires after specified TTL | | TOOL_SPECIFIC | Specific to a particular tool | | CONTEXT_SPECIFIC | Specific to a context (repo, project, etc.) |

Configuration Options

interface ApprovalPluginOptions {
  // Storage configuration
  storage?: StorageConfig;
  storageInstance?: RootStorage | NamespacedStorage;
  namespace?: string; // default: 'approval'

  // Approval mode
  mode?: 'recheck' | 'webhook'; // default: 'recheck'

  // Recheck mode options
  recheck?: {
    url?: string;
    auth?: 'jwt' | 'bearer' | 'none' | 'custom';
    interval?: number;
    maxAttempts?: number;
  };

  // Webhook mode options
  webhook?: {
    url?: string;
    includeJwt?: boolean; // default: false (security)
    challengeTtl?: number; // seconds, default: 300
    callbackPath?: string; // default: '/approval/callback'
  };

  // Audit options
  enableAudit?: boolean; // default: true
  maxDelegationDepth?: number; // default: 3
  cleanupIntervalSeconds?: number; // default: 60
}

PKCE Security (Webhook Mode)

When using webhook mode, ApprovalPlugin uses PKCE (RFC 7636) for secure authorization:

  1. Generate PKCE pair: code_verifier (secret) + code_challenge (hash)
  2. Store challenge in Redis: challenge:{code_challenge} → session info
  3. Send to webhook: {code_challenge, toolId, callbackUrl} (NO session ID!)
  4. External system calls back: POST /approval/callback {code_verifier, approved}
  5. Plugin validates: SHA256(code_verifier) === stored code_challenge
  6. Grant approval if valid

This ensures:

  • Session ID is never exposed to external systems
  • Challenge is single-use (deleted after callback)
  • Challenge expires after TTL
  • Only holder of code_verifier can complete approval

License

Apache-2.0