pitchprotocol_application_status
Pack: pitchprotocol · Endpoint: https://gateway.pipeworx.io/pitchprotocol/mcp
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’s flow.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
application_id | string | yes | The applicationId returned when the application was created. |
Example call
Arguments
{
"application_id": "app_1a2b3c4d5e6f7g8h9i0j"
}
curl
curl -X POST https://gateway.pipeworx.io/pitchprotocol/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"pitchprotocol_application_status","arguments":{"application_id":"app_1a2b3c4d5e6f7g8h9i0j"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('pitchprotocol_application_status', {
"application_id": "app_1a2b3c4d5e6f7g8h9i0j"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"pitchprotocol": {
"url": "https://gateway.pipeworx.io/pitchprotocol/mcp"
}
}
}
See Getting Started for client-specific install steps.