
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
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.
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.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.