Pipedream · Example Payload

Pipedream Mcp Tools Call Example

ProCode_API_CompositionWorkflowsConnectMCPEmbedded IntegrationsManaged AuthAI Agents

Pipedream Mcp Tools Call Example is an example object payload from Pipedream, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://remote.mcp.pipedream.net/v3",
    "headers": {
      "Authorization": "Bearer pd_oauth_xxx",
      "x-pd-project-id": "proj_abc",
      "x-pd-environment": "production",
      "x-pd-external-user-id": "user_42",
      "x-pd-app-slug": "notion",
      "Content-Type": "application/json"
    },
    "body": {
      "jsonrpc": "2.0",
      "id": 2,
      "method": "tools/call",
      "params": {
        "name": "notion-create-page",
        "arguments": {
          "parent_page_id": "abc",
          "title": "Hello"
        }
      }
    }
  },
  "response": {
    "status": 200,
    "body": {
      "jsonrpc": "2.0",
      "id": 2,
      "result": {
        "content": [
          {
            "type": "text",
            "text": "Page created: page_xyz"
          }
        ]
      }
    }
  }
}