Vendor Signals

live Reference

Vendor documentation and changelog change-tracking as ACCOUNT SIGNALS

3 tools
0ms auth
free tier 50 calls/day

Tools

vendor_recent_changes

What a software vendor shipped recently — changelog entries, release notes and product announcements with the date and a link to the source. Built for account research and outreach timing: "what did S

No parameters required.

Try it
vendor_signal_sweep

Recent shipping activity across every tracked software vendor at once, newest first — a single sweep for "which of these accounts have been active this week". Use for prospecting and account prioritis

No parameters required.

Try it
vendor_coverage

Which software vendors are tracked for changelog and release activity, and how healthy each feed is — the vendor name, its domain, what kind of source is watched (changelog feed vs GitHub releases), w

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/vendor-signals/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/vendor-signals/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"vendor_recent_changes","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("vendor_recent_changes", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("vendor documentation and changelog change-tracking as account signals");