quicksign
Server Details
E-signatures for contracts and NDAs. Draft with AI, review, and send for signature.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
4 toolsget_draft_contentARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The AI Session ID (returned from push_draft_text or shared by the user) |
TDQS
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.
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.
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.
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.
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.
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_statusARead-onlyInspect
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?"
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The AI Session ID returned from push_draft_text | |
| type | Yes | Whether this was a PDF or text draft |
TDQS
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.
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.
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.
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.
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.
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.
get_handoff_linkARead-onlyInspect
Get a direct link for the document owner to review a draft in QuickSign.
Returns a URL that opens the document directly in the QuickSign editor. Share this with the user so they can review the contract, add recipients, place signature fields, and send it.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The document ID to get the review link for | |
| type | Yes | Whether this was a PDF or text draft |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, and the description adds value by explaining what the URL does (opens in QuickSign editor, enables review/send). No contradictions; the description enriches the behavioral 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the core purpose, followed by brief usage guidance. Every word earns its place, with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only link generator, the description fully covers the return value (a URL), the use case (owner review), and the next steps. Combined with read-only annotations and a complete input schema, the agent has enough context to invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema fully describes both parameters (id and type) with clear descriptions, so schema coverage is 100%. The description does not add extra parameter meaning, aligning with the baseline score of 3 for complete schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb and resource: 'Get a direct link for the document owner to review a draft in QuickSign.' It distinguishes from sibling tools by focusing on generating a handoff link rather than retrieving content or status.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool: to share a review link with the owner so they can review, add recipients, place signature fields, and send. It does not explicitly mention alternatives, but the context is specific enough to avoid confusion with siblings.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Contract title (e.g., 'Freelance Agreement - Jane Smith') | |
| content | Yes | Full contract text content in the specified format | |
| content_type | No | Content format — markdown recommended | markdown |
TDQS
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.
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.
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.
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.
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.
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.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
- Added
get_draft_content
3 tool updates
- First observed
get_draft_status - First observed
get_handoff_link - First observed
push_draft_text
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
E-signature API for AI agents: send contracts, sign PDF documents, track and download signed files.
Send AI-created PDFs for signature, track signers, and return verifiable document evidence.
Send documents for legally binding e-signature and manage the reusable templates behind them.
Send PDFs for legally binding e-signature, free and unlimited. Track status; free legal templates.
Related MCP Servers
- AlicenseAqualityDmaintenanceSend documents for e-signature from Claude Desktop, Claude Code, Cursor, and other AI agents. Free DocuSign alternative.1557MIT
- AlicenseAqualityDmaintenanceDocument signing for AI agents. Send markdown or PDF for two-party e-signing with a single tool call — handles PDF generation, email verification, and SHA-256 certified delivery.222MIT
- AlicenseNot gradedqualityBmaintenanceE-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.3MIT
- AlicenseNot gradedqualityCmaintenanceBlockchain-anchored e-signatures. Create, send, negotiate, and verify legally binding agreements — every signature anchored to XRPL + Bitcoin with public verification. Agents can pay autonomously.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
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.
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.
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.
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.