Skip to main content
Glama
deyikong

SendGrid MCP Server

by deyikong

Open Automation Creator

open_automation_creator

Open the SendGrid automation creator in your browser to build and manage email automation workflows.

Instructions

Open SendGrid automation creator in browser

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the 'open_automation_creator' tool. It returns a text response with a URL to open the SendGrid automation creator in a browser (https://mc.sendgrid.com/automations/choose).
    open_automation_creator: {
      config: {
        title: "Open Automation Creator",
        description: "Open SendGrid automation creator in browser",
      },
      handler: async (): Promise<ToolResult> => {
        return {
          content: [
            {
              type: "text",
              text: "Please open this URL in your browser to create a new automation:\nhttps://mc.sendgrid.com/automations/choose",
            },
          ],
        };
      },
  • The config for the 'open_automation_creator' tool. It defines the title and description but has no inputSchema (no parameters required).
    config: {
      title: "Open Automation Creator",
      description: "Open SendGrid automation creator in browser",
    },
  • src/index.ts:20-23 (registration)
    The tool is registered with the MCP server via the generic loop that iterates over allTools and calls server.registerTool() with the tool's name, config, and handler.
    // Register all tools
    for (const [name, tool] of Object.entries(allTools)) {
      server.registerTool(name, tool.config as any, tool.handler as any);
    }
  • The tool is aggregated into the allTools object via spread operator from automationTools, which includes open_automation_creator.
    export const allTools = {
      ...automationTools,
      ...campaignTools,
      ...contactTools,
      ...mailTools,
      ...miscTools,
      ...statsTools,
      ...templateTools,
    };
  • Reference to open_automation_creator in the help prompt documentation, listing it under 'Browser Tools'.
    - open_automation_creator: Open the SendGrid web interface to create a new automation
    - open_automation_editor: Open the editor for a specific automation
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It only states that it opens a browser UI, but omits details about side effects, required permissions, or whether it returns a URL or confirmation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence with no superfluous content. Every word is necessary and front-loaded, achieving maximum conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (no parameters, no output schema), the description is minimally complete. It conveys the core action, but could benefit from stating the expected outcome (e.g., opens a browser tab with the UI).

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters exist, so the schema coverage is 100%. Per guidelines, zero parameters warrant a baseline of 4. The description adds no parameter details, but none are needed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('open') and resource ('SendGrid automation creator'), clearly indicating the tool's function. It distinguishes from sibling tools like 'open_automation_editor' by targeting creation rather than editing.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives. It does not mention that it is intended for creating new automations versus editing existing ones, nor does it provide context for prerequisites or typical workflows.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/deyikong/sendgrid-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server