get_bounces
Pack: sendgrid · Endpoint: https://gateway.pipeworx.io/sendgrid/mcp
List email addresses that have bounced. Includes bounce reason and timestamp. Example: get_bounces({ limit: 100, _apiKey: “SG.xxx” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | number | no | Max results to return (default 100, max 500) |
_apiKey | string | yes | SendGrid API key (SG.xxx) |
Example call
Arguments
{
"_apiKey": "your-sendgrid-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/sendgrid/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_bounces","arguments":{"_apiKey":"your-sendgrid-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_bounces', {
"_apiKey": "your-sendgrid-api-key"
});
More examples
{
"limit": 100,
"_apiKey": "your-sendgrid-api-key"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "List of bounced email addresses with reasons and timestamps"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"sendgrid": {
"url": "https://gateway.pipeworx.io/sendgrid/mcp"
}
}
}
See Getting Started for client-specific install steps.