Skip to main content
Glama

generate_and_send

Destructive

Generate personalized LinkedIn outreach messages and send them automatically, validating each message to ensure only successful ones are delivered.

Instructions

Generate a personalized LinkedIn message and send it (or queue for review).

Creates and sends cold outreach, connection requests, and personalized
LinkedIn invitations using voice-matched AI messaging.
Sends automatically after validation. A message that fails validation is
never sent.

Args:
    campaign_id: Which campaign to send from. Uses active campaign if empty.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
campaign_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.10.375

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already flag the operation as destructive and not read-only; the description adds meaningful operational detail: it sends automatically after validation, never sends failed-validated messages, and may queue for review. This gives the agent a clear behavioral model beyond the simple send intent.

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 compact and front-loaded, with the core action in the first sentence and supporting behavior (validation, queueing, campaign selection) in short follow-ups. No sentence is wasted, and the Args block is clearly separated.

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

Completeness4/5

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

For a one-parameter tool with an output schema and destructive annotations, the description covers the essential workflow: generation, sending, validation, and campaign selection. It does not explain what 'queue for review' entails or how to choose between this and sibling send tools, but these are secondary to making the call.

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

Parameters5/5

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

The only parameter, campaign_id, has no schema description, leaving 0% schema coverage. The description's Args section fully compensates by stating what it selects and what happens when empty (uses the active campaign), which is exactly the behavioral nuance an agent needs.

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 action: generate and send a personalized LinkedIn message, with an explicit queue-for-review option. It clearly covers cold outreach, connection requests, and invitations, but it does not name or contrast sibling send tools like send_message or send_email, so differentiation is implicit rather than explicit.

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

Usage Guidelines3/5

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

The description implies when to use the tool: when you want a generated LinkedIn message sent automatically after validation. However, it provides no when-not-to-use guidance or alternatives, which is a notable gap given a large sibling set that includes send_message, send_email, and create_campaign.

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