Skip to main content
Glama

generate_proposal

Create tailored proposals for freelance gigs using AI. Specify gig ID, profile, and tone to generate a personalized pitch with optional portfolio references.

Instructions

Generate a personalized proposal for a specific gig using Langchain ChatGroq

Args:
    gig_id: ID of the gig to generate proposal for
    user_profile: User profile information
    tone: Tone of the proposal (professional, friendly, confident)
    include_portfolio: Whether to include portfolio references
    custom_message: Additional custom message to include

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toneNoprofessional
gig_idYes
user_profileYes
custom_messageNo
include_portfolioNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.1.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It does not disclose whether the generated proposal is persisted, sent to the client, or merely returned; nor does it mention latency, token cost, or that LLM generation is non-deterministic. The mention of Langchain ChatGroq is the only faint signal, which is well short of what a zero-annotation tool needs.

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

Conciseness4/5

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

The description is front-loaded with the core purpose and then uses a compact Args list with one line per parameter. There is no filler prose; the only minor waste is the toolchain name in the opening sentence.

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?

With five parameters, a nested user_profile object, no annotations, and an output schema that already covers return values, the description adequately covers input semantics but omits behavioral context an agent needs — side effects, persistence, and any prerequisites for a valid gig_id or complete user_profile.

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?

Schema description coverage is 0% — the input schema only supplies titles and defaults — so the Args block is doing real work. It documents all five parameters, including the allowed tone values (professional, friendly, confident) and the purpose of user_profile, custom_message, and include_portfolio, which the schema leaves entirely opaque.

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 first line names a specific verb and resource ('Generate a personalized proposal') scoped to 'a specific gig', which cleanly separates it from siblings like generate_portfolio, create_user_profile, or research_client_intel. The trailing 'using Langchain ChatGroq' is an implementation detail that adds no selection value but does hint that output is LLM-generated.

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?

There is no when-to-use, when-not-to-use, or alternative-routing guidance. An agent cannot tell from this text whether to call generate_proposal before or after analyze_profile_fit or calculate_pricing_strategy, nor whether it should be paired with send_notification.

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