
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
@mcp-guardian/plugin-sdk
Advanced tools
Stable v3.0 detector plugin API for MCP Guardian.
pnpm add @mcp-guardian/plugin-sdk
import { createDetectorPlugin } from '@mcp-guardian/plugin-sdk';
export default createDetectorPlugin({
name: 'acme-pii-scanner',
version: '1.0.0',
onLoad() { console.error('[acme] loaded'); },
scanArguments(text, ctx) {
if (/SSN-\d{3}-\d{2}-\d{4}/.test(text)) {
return [{ type: 'ssn', location: ctx.location || 'args', severity: 'HIGH', redacted: 'SSN-[REDACTED]' }];
}
return [];
},
});
Enable at runtime:
export GUARDIAN_PLUGINS_ENABLED=true
export GUARDIAN_PLUGIN_PATH=/path/to/built/plugins
See docs/PLUGIN_SDK.md for publishing and lifecycle details.
FAQs
Stable detector plugin SDK for MCP Guardian
We found that @mcp-guardian/plugin-sdk 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.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.