Skip to main content
Glama

Server Details

E-signatures for contracts and NDAs. Draft with AI, review, and send for signature.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.3/5 across 4 of 4 tools scored.

Server CoherenceA
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.

Available Tools

4 tools
get_draft_contentA
Read-only
Inspect

Retrieve the full text content of a previously pushed draft by its session ID.

Use this when you have a QuickSign session/document ID and need to read the current draft text — for example, to revise a contract, check what was previously sent, or continue working on an existing draft. Returns the full markdown/text content along with metadata.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe AI Session ID (returned from push_draft_text or shared by the user)
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds useful behavioral context by noting it returns 'full markdown/text content along with metadata', but it does not disclose error cases or rate limits. This is still a valuable addition 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.

Conciseness5/5

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

The description is concise and front-loaded: the first sentence states the primary action, and the second adds usage context and return value. No wasted words.

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 simple 1-parameter read-only tool with annotations and no output schema, the description covers when to use, what it does, and generally what it returns. The mention of 'metadata' is somewhat vague, but it is adequate for this tool's complexity.

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

Parameters3/5

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

Schema coverage is 100% with a descriptive parameter: 'The AI Session ID (returned from push_draft_text or shared by the user)'. The description merely refers to 'session ID' without adding new semantic information, so the baseline of 3 applies.

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 verb 'Retrieve' and the resource 'full text content of a previously pushed draft' by session ID, which distinguishes it from siblings like get_draft_status (status) and push_draft_text (push).

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 provides explicit when-to-use guidance: 'Use this when you have a QuickSign session/document ID and need to read the current draft text' with relevant examples. However, it does not mention when not to use or explicitly point to sibling alternatives, so it misses the top score.

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

get_draft_statusA
Read-only
Inspect

Check the full status chain of a document draft in QuickSign.

Returns the session status (active/completed), the linked document's lifecycle status (draft/ready/pending/completed/cancelled), and whether the draft or document was converted into a reusable template (converted_to_template, template_id). Use this to follow up on a draft you previously pushed — e.g. "has the owner reviewed that NDA yet?"

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe AI Session ID returned from push_draft_text
typeYesWhether this was a PDF or text draft
Behavior4/5

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

Annotations already indicate readOnlyHint=true and destructiveHint=false, covering the safety profile. The description adds meaningful behavioral context by explaining exactly what statuses are returned (session, document lifecycle, template conversion) and the 'converted_to_template' flag, which is valuable beyond the annotation flags. It does not describe rate limits or error handling, but for a read-only check this is sufficient.

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 two sentences, front-loading the purpose ('Check the full status chain') followed by specific return details and a practical usage example. Every sentence earns its place with no verbosity or repetition.

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

Completeness5/5

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

For a tool with only 2 required parameters, full schema coverage, and read-only annotations, the description covers all essential aspects: what the tool does, what it returns, and a typical use case. There is no output schema, but the description explicitly lists all return values, making it complete for an agent to select and invoke correctly.

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

Parameters3/5

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

Schema coverage is 100%, and the schema already provides clear descriptions for both parameters: id ('The AI Session ID returned from push_draft_text') and type ('PDF or text draft'). The description does not add new parameter-level semantics beyond what the schema states, so the baseline of 3 is appropriate.

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 uses a specific verb ('Check') with a clear resource ('full status chain of a document draft in QuickSign') and explicitly lists what statuses are returned. It distinguishes itself from sibling tools like get_draft_content (content) and get_handoff_link (link), making the tool's unique purpose unmistakable.

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 provides a concrete use case: 'Use this to follow up on a draft you previously pushed — e.g. "has the owner reviewed that NDA yet?"' This gives context on when to invoke the tool. It does not explicitly exclude other scenarios, but the example and focus on status checking clearly separate it from sibling tools, so guidance is strong.

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

push_draft_textAInspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
titleYesContract title (e.g., 'Freelance Agreement - Jane Smith')
contentYesFull contract text content in the specified format
content_typeNoContent format — markdown recommendedmarkdown
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.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Send documents for e-signature from Claude Desktop, Claude Code, Cursor, and other AI agents. Free DocuSign alternative.
    Last updated
    15
    36
    MIT
  • A
    license
    -
    quality
    B
    maintenance
    E-signature for AI agents. One unauthenticated call returns a sandbox API key (no account, no browser), then the agent can send documents for signature, check status, and download the sealed PDF plus Certificate of Completion.
    Last updated
    4
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources