
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
@frontmcp/plugin-remember
Advanced tools
Remember plugin for FrontMCP - encrypted session memory with approval system for secure tool authorization
Remember plugin for FrontMCP - provides encrypted session memory with an approval system for secure tool authorization.
npm install @frontmcp/plugin-remember
import { RememberPlugin } from '@frontmcp/plugin-remember';
import { FrontMcp } from '@frontmcp/sdk';
const app = new FrontMcp({
plugins: [RememberPlugin],
});
@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
}
}
}
import { RememberPlugin } from '@frontmcp/plugin-remember';
const app = new FrontMcp({
plugins: [
RememberPlugin.configure({
store: 'redis',
encryption: { enabled: true },
approval: { enabled: true },
}),
],
});
Apache-2.0
FAQs
Remember plugin for FrontMCP - encrypted session memory with approval system for secure tool authorization
The npm package @frontmcp/plugin-remember receives a total of 2,003 weekly downloads. As such, @frontmcp/plugin-remember popularity was classified as popular.
We found that @frontmcp/plugin-remember demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.