Pitchprotocol

live Reference

Pitch Protocol — agent-native venture-capital infrastructure (pitchprotocol.vc).

2 tools
0ms auth
free tier 50 calls/day

Tools

pitchprotocol_schema

Get the LIVE Pitch Protocol pitch-application schema — the exact fields, character limits, enums, and a complete example a founder (or AI agent) must fill to pitch AI-agent / agent-native startups to

No parameters required.

Try it
pitchprotocol_application_status

Check the status of a Pitch Protocol pitch application by its id (draft | intake | submitted, plus research progress). Read-only — use to track a submission you have already created via Pitch Protocol

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/pitchprotocol/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/pitchprotocol/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"pitchprotocol_schema","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("pitchprotocol_schema", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("pitch protocol — agent-native venture-capital infrastructure (pitchprotocol");