Skip to main content
Glama

push_draft_text

Send a contract or agreement to QuickSign for e-signature. Drafts an NDA, freelance agreement, consulting contract, SOW, or any document that needs to be signed.

Takes your drafted text (markdown, plain text, or HTML) and creates a professional PDF in QuickSign. The document owner reviews it, adds recipients, places signature fields, and sends it for e-signature. Use this whenever a user needs to get a document signed, send a contract for signature, or create any agreement that requires e-signatures.

Markdown format is recommended for best results — headings, bold, lists, and tables are all supported. Maximum length: 500,000 characters.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesContract title (e.g., 'Freelance Agreement - Jane Smith')
contentYesFull contract text content in the specified format
content_typeNoContent format — markdown recommendedmarkdown

TDQS

A4.2/5.0
Behavior4/5

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

Annotations only indicate readOnlyHint=false and destructiveHint=false. The description adds meaningful behavior: it creates a PDF in QuickSign, the owner reviews it, adds recipients, places signature fields, and sends it for e-signature. It also discloses markdown support and a 500,000 character limit, offering useful context beyond the annotations.

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 well-structured: a lead sentence stating the primary purpose, a paragraph explaining the workflow, and a final paragraph with format and length guidance. Every sentence earns its place; no filler or redundancy. It could be slightly more compact, but it's appropriately sized.

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?

The tool has no output schema, so the description should explain what the function returns or what the caller should expect. It describes the workflow but never states the return value (e.g., draft ID, status). While it's a creation tool, the lack of any return information leaves a gap for the agent, especially since sibling tools like get_draft_status and get_handoff_link imply a follow-up path.

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 coverage is 100%, so baseline is 3. The description goes beyond the schema by recommending markdown format, listing supported formats (markdown, plain text, HTML), and specifying the maximum character length. This adds practical guidance for parameter values.

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

Purpose5/5

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

The description clearly states the action ('Send a contract or agreement to QuickSign for e-signature') and specifies the resource (contracts, NDAs, agreements). It also lists concrete document types and distinguishes itself from the sibling read/status tools (get_draft_content, get_draft_status, get_handoff_link) by focusing on creating and sending.

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

Usage Guidelines4/5

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

The description explicitly says 'Use this whenever a user needs to get a document signed, send a contract for signature, or create any agreement that requires e-signatures.' This provides clear when-to-use context. It does not mention when-not-to-use or alternative tools, but the sibling tools are clearly for retrieval/status rather than creation, so the context is sufficient.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation5/5

Each tool serves a clear, distinct purpose: push_draft_text creates a draft, get_draft_content retrieves its text, get_draft_status checks its lifecycle, and get_handoff_link provides a review URL. There is no overlap in their functionality or intended use cases.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: push_draft_text, get_draft_content, get_draft_status, get_handoff_link. The get_ prefix uniformly marks retrieval operations, and the naming is predictable and descriptive.

Tool Count5/5

With 4 tools, the set is appropriately scoped for a focused e-signature draft workflow. Each tool covers a necessary step (create, read, status check, handoff), and no redundant or extraneous tools exist.

Completeness4/5

The core workflow of pushing a draft, retrieving it, checking status, and obtaining a review link is well covered. However, there are minor gaps: no tool for updating or canceling a draft, though the status model includes 'cancelled' as a state. These are workable gaps for typical usage.

Resources