
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.
Agent tool reliability monitoring — one-line wrapper for any tool, with schema drift detection and synthetic health checks.
One-line wrapper. Catches the silent tool failures your agent can't.
npm install toolpulse
import { monitor } from "toolpulse";
const searchWeb = monitor(async (query: string) => {
// your existing tool, unchanged
return await fetch(`...?q=${query}`).then(r => r.json());
}, { toolName: "search_web", agentId: "my-agent" });
That's it. Every call is recorded, schema drift is detected, and you get a dashboard at toolpulse.io.
export TOOLPULSE_API_KEY=tp_live_xxxxxxxxxxxxx
Agent tools fail silently — APIs change response shapes, latency creeps up, exceptions get caught and forgotten. ToolPulse records every tool call, fingerprints the response shape, alerts on schema drift, and runs synthetic health checks.
// Vercel AI SDK
import { tool } from "ai";
import { monitor } from "toolpulse";
const search = tool({
description: "search the web",
parameters: z.object({ query: z.string() }),
execute: monitor(async ({ query }) => { /* ... */ }, { toolName: "search" }),
});
// LangChain.js
import { DynamicStructuredTool } from "@langchain/core/tools";
new DynamicStructuredTool({
name: "search",
func: monitor(async (input) => { /* ... */ }, { toolName: "search" }),
// ...
});
// MCP TypeScript server
server.tool("search", { query: z.string() }, monitor(handler, { toolName: "search" }));
MIT
FAQs
Agent tool reliability monitoring — one-line wrapper for any tool, with schema drift detection and synthetic health checks.
We found that toolpulse 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.