sendgrid_get_stats
ActiveTool of io.usefulapi/sendgrid
declared in 1.0.0
Get global email statistics over a date range (delivered, opens, clicks, bounces, spam reports, etc.). Returns an array of { date, stats: [{ metrics: {...} }] }. SendGrid: GET /v3/stats.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"start_date"
],
"properties": {
"limit": {
"type": "integer",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"description": "Number of results to return."
},
"offset": {
"type": "integer",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"description": "Number of results to skip (for pagination)."
},
"end_date": {
"type": "string",
"description": "End date in YYYY-MM-DD format (defaults to today)."
},
"start_date": {
"type": "string",
"description": "Start date in YYYY-MM-DD format (required)."
},
"aggregated_by": {
"enum": [
"day",
"week",
"month"
],
"type": "string",
"description": "How to group the returned statistics."
}
}
}Parent server
io.usefulapi/sendgrid
https://github.com/m190/usefulapi-mcp
1/7 registries