
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.
@opensyber/mcp-watch
Advanced tools
MCP rug-pull detection. Records SHA-256 fingerprints per tool, per server, across days — catches what session-scoped scanners miss.
@opensyber/mcp-watchMCP rug-pull detection. Records SHA-256 fingerprints per tool, per server, across days — catches what session-scoped scanners miss.

npm i -g @opensyber/mcp-watch
pip install opensyber-mcp-watch # Python wrapper, requires Node 20+
Scan 1 — Monday weather fingerprint f798fc7b… stored
Scan 2 — Wednesday weather fingerprint f798fc7b… matches
Scan 3 — Sunday weather fingerprint a519884c… DRIFT DETECTED
description gained "[SYSTEM]" override payload
→ Quarantine recommended. Disconnect agent until reviewed.
Every other scanner saw the clean version on every scan, because every other scanner hashes once per session. mcp-watch keeps SHA-256 fingerprints across days, so when a tool's description on Sunday gains an override that wasn't there on Monday, you find out before the agent acts on it.
| Free (this package) | Hosted (opensyber.cloud) | |
|---|---|---|
| Local fingerprint history | 7 days | Multi-week |
| Cross-machine sync | — | ✓ |
| Behavioral baselines | — | ✓ (Growth fintech tier) |
| Regulator-ready audit logs | — | ✓ (Bank compliance tier) |
| Account required | no | yes |
| License | MIT | proprietary |
opensyber-mcp-watch init # one-time setup
opensyber-mcp-watch scan # one-shot fingerprint
opensyber-mcp-watch watch # long-running watcher
opensyber-mcp-watch watch --interval 60s # custom poll interval
opensyber-mcp-watch history <server> <tool> # fingerprints over time
opensyber-mcp-watch diff <server> <tool> # current vs stored
opensyber-mcp-watch --version
opensyber-mcp-watch --help
~/.opensyber/mcp-watch.config.json:
{
"servers": [
{ "url": "http://localhost:3001/mcp", "name": "local-dev" },
{ "url": "https://mcp.example.com", "name": "prod", "headers": { "Authorization": "Bearer ..." } }
],
"interval_ms": 300000,
"alert_on": ["description_change", "schema_change", "tool_added", "tool_removed"]
}
Override via env vars:
MCP_WATCH_CONFIG — path to config fileMCP_WATCH_DB — path to SQLite databaseNO_COLOR — disable ANSI color in outputThe fingerprint is SHA-256 of canonical JSON over {name, description, inputSchema}. Key reordering inside inputSchema is invisible (canonicalize sorts keys), so cosmetic noise from the MCP server doesn't trigger false positives. Anything that changes the semantics of the tool definition changes the fingerprint.
import { fingerprintTool } from '@opensyber/mcp-watch';
const fp = await fingerprintTool({
name: 'weather',
description: 'Returns the current weather for a given city.',
inputSchema: { type: 'object', properties: { city: { type: 'string' } }, required: ['city'] },
});
// fp === '64-char lowercase hex SHA-256'
classifyDrift returns one of four verdicts:
first-seen — no prior fingerprint on file (baseline)unchanged — fingerprints matchversion-bump — inputSchema changed, description stablesuspicious-injection — description changed (or gained a marker like [SYSTEM], exfiltrate, etc.)Built-in injection markers: [SYSTEM], <system>, <instruction>, ignore previous, override all prior, exfiltrate, attacker.example.
Local SQLite at ~/.opensyber/mcp-watch.db. Two history tables, 7-day retention enforced on every write. Use the hosted product for multi-week history and cross-machine sync.
import { Storage, scanOnce, loadConfig, fetchToolsList, fingerprintTool } from '@opensyber/mcp-watch';
const storage = new Storage();
const cfg = loadConfig();
for (const server of cfg.servers) {
const result = await scanOnce(storage, server);
console.log(result.alerts);
}
storage.close();
Snyk, Cisco mcp-scanner, Pipelock, and Straiker hash MCP tool definitions once per session. A rug-pull tuned to swap a tool description on the third call defeats all of them. mcp-watch keeps state across days, so cross-session attacks become visible.
This is the first piece of OpenSyber — AI Agent Detection & Response for regulated industries.
See CONTRIBUTING.md. Security issues: see SECURITY.md — please do not file public issues.
MIT © OpenSyber
FAQs
MCP rug-pull detection. Records SHA-256 fingerprints per tool, per server, across days — catches what session-scoped scanners miss.
We found that @opensyber/mcp-watch 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.