SendGrid · Marketing

SENDGRID_LIST_TEMPLATES

List dynamic transactional templates in the connected SendGrid account. Returns { templates: [{ id, name, generation }] }.

Provider
SendGrid
Access
Read
Category
Marketing
Version
v1

Input schema

{
  "type": "object",
  "properties": {
    "pageSize": {
      "type": "number",
      "description": "Templates per page (default 50, max 200)."
    }
  },
  "additionalProperties": false
}

How to call it

Expose this tool to any MCP-capable agent (Claude, GPT, or your own) through CybrLink's MCP server. The agent calls sendgrid_list_templates with arguments matching the schema above.

CybrLink validates the input, injects the connected SendGrid credentials server-side, and runs a single scoped provider API call through the shared proxy — the same guarded path as the generic call_api tool. The raw secret never reaches the model, and the response is trimmed to just the fields the agent needs.

Frequently asked

How do I let an AI agent sendgrid list templates?
Connect SendGrid to CybrLink, then expose the `sendgrid_list_templates` tool to any MCP-capable agent (Claude, GPT, or a custom framework). The agent calls it with typed arguments; CybrLink injects the SendGrid credential server-side and runs one scoped API call. List dynamic transactional templates in the connected SendGrid account. Returns { templates: [{ id, name, generation }] }.
Does the AI model see my SendGrid credentials when using SENDGRID_LIST_TEMPLATES?
No. CybrLink stores the credential in a token vault and injects it on the server for each call, so the model can read this data from SendGrid without the OAuth token or API key ever entering its context.