Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@frontmcp/plugin-remember

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@frontmcp/plugin-remember

Remember plugin for FrontMCP - encrypted session memory with approval system for secure tool authorization

latest
Source
npmnpm
Version
1.3.0
Version published
Weekly downloads
3.3K
0.24%
Maintainers
1
Weekly downloads
 
Created
Source

@frontmcp/plugin-remember

Remember plugin for FrontMCP - provides encrypted session memory with an approval system for secure tool authorization.

Installation

npm install @frontmcp/plugin-remember

Usage

import { RememberPlugin } from '@frontmcp/plugin-remember';
import { FrontMcp } from '@frontmcp/sdk';

const app = new FrontMcp({
  plugins: [RememberPlugin],
});

Features

  • Encrypted Memory: Store and retrieve values with AES-256-GCM encryption
  • Scoped Storage: Session, user, tool, and global scopes
  • Approval System: Tool approval workflow with configurable requirements
  • TTL Support: Automatic expiration of stored values
  • Multiple Backends: Redis, Vercel KV, or in-memory storage

Usage in Tools

@Tool({ name: 'my_tool' })
class MyTool extends ToolContext {
  async execute(input) {
    // Store a value
    await this.remember.set('theme', 'dark');

    // Retrieve a value
    const theme = await this.remember.get('theme', { defaultValue: 'light' });

    // Store with TTL (expires in 5 minutes)
    await this.remember.set('token', 'xyz', { ttl: 300 });

    // Check if remembered
    if (await this.remember.knows('onboarded')) {
      // Skip onboarding
    }
  }
}

Configuration

import { RememberPlugin } from '@frontmcp/plugin-remember';

const app = new FrontMcp({
  plugins: [
    RememberPlugin.configure({
      store: 'redis',
      encryption: { enabled: true },
      approval: { enabled: true },
    }),
  ],
});

License

Apache-2.0

Keywords

mcp

FAQs

Package last updated on 27 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts