MCP betaDocumentos + facturasDocs + invoices

Conecta SignQuick con tu asistente de IAConnect SignQuick to your AI assistant

El servidor MCP permite buscar documentos, consultar el estado de las firmas y preparar borradores de facturas desde una herramienta compatible. No entrega los PDF originales, no envía emails de facturas y no cobra pagos.The MCP server lets a compatible tool search documents, check signature status and prepare invoice drafts. It does not return original PDF files, email invoices or collect payments.

Antes de empezarBefore you start

Qué necesitasWhat you need

Cuenta SignQuickSignQuick account

Inicia sesión y añade al menos un documento para poder consultarlo.Sign in and add at least one document so there is something to query.

Cliente MCP remotoRemote MCP client

Debe aceptar servidores HTTP remotos y headers Bearer personalizados.It must support remote HTTP servers and custom Bearer headers.

Token privadoPrivate token

Se muestra una sola vez. Trátalo como una contraseña y no lo compartas.It is shown once. Treat it like a password and do not share it.

Quick start

Conéctalo en cuatro pasosConnect it in four steps

1

Crea el tokenCreate the token

Abre el panel MCP y pulsa Crear token.Open the MCP dashboard and select Create token.

2

Cópialo una vezCopy it once

Después solo verás un fragmento identificador.Afterwards, only an identifying fragment is displayed.

3

Añade el servidorAdd the server

Ejecuta el comando de Claude Code. Se guarda en tu usuario para reutilizarlo en otros proyectos.Run the Claude Code command. It is saved to your user scope so you can reuse it across projects.

4

Comprueba la conexiónCheck the connection

Dentro de Claude Code escribe /mcp y revisa que SignQuick aparezca conectado.Inside Claude Code, type /mcp and check that SignQuick appears connected.

Claude CodeClaude Code

https://signquickapp.com/mcp

claude mcp add --transport http --scope user signquick https://signquickapp.com/mcp \
  --header "Authorization: Bearer YOUR_SIGNQUICK_MCP_TOKEN"

Configuración genéricaGeneric configuration

https://signquickapp.com/mcp

{
  "mcpServers": {
    "signquick": {
      "type": "http",
      "url": "https://signquickapp.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_SIGNQUICK_MCP_TOKEN"
      }
    }
  }
}

En Claude Code puedes usar /mcp para ver el estado y reconectar el servidor sin cerrar toda la aplicación. En otros clientes, busca una configuración HTTP o Streamable HTTP y reemplaza el token de ejemplo.In Claude Code, use /mcp to view status and reconnect the server without quitting the whole app. In other clients, look for an HTTP or Streamable HTTP server configuration and replace the example token.

Comprueba la conexiónTest the connection

Puedes probar el servidor desde una terminal. Guarda primero el token en la variable de entorno SIGNQUICK_MCP_TOKEN para no escribirlo directamente en el comando.You can test the server from a terminal. First store the token in the SIGNQUICK_MCP_TOKEN environment variable so it is not written directly in the command.

curl
curl https://signquickapp.com/mcp \
  -X POST \
  -H "Authorization: Bearer $SIGNQUICK_MCP_TOKEN" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "MCP-Protocol-Version: 2025-06-18" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'

Herramientas disponiblesAvailable tools

list_documents

Lista los documentos de tu cuenta y permite filtrar por estado.Lists documents in your account and can filter them by status.

search_documents

Busca documentos por título.Searches documents by title.

get_document_metadata

Consulta un documento y sus solicitudes de firma relacionadas.Returns a document and its related signature requests.

list_signature_requests

Lista solicitudes y permite filtrar por documento o estado.Lists requests and can filter them by document or status.

get_signature_status

Comprueba si una solicitud está enviada, vista o firmada.Checks whether a request is sent, viewed or signed.

list_invoice_clients

Lista clientes de facturación guardados en tu cuenta.Lists invoice clients saved in your account.

list_invoices

Lista facturas y permite filtrar por cliente, fecha o estado.Lists invoices and can filter them by client, date or status.

search_invoices

Busca facturas por número, notas o nombre de cliente.Searches invoices by number, notes or client name.

get_invoice

Consulta una factura con cliente, líneas e importes.Returns one invoice with client, line items and totals.

create_invoice_draft

Crea un borrador en la cuenta que creó el token. El email del cliente es solo contacto/destinatario opcional; no decide dónde se guarda.Creates a draft in the account that created the token. The client email is only an optional contact/recipient; it does not decide where the draft is saved.

update_invoice_status

Actualiza el estado interno de una factura.Updates the internal status of an invoice.

Qué puede hacerWhat it can do

  • Buscar documentos por título.Search documents by title.
  • Consultar nombres, estados y fechas.Read names, statuses and dates.
  • Ver si una solicitud fue abierta o firmada.See whether a request was viewed or signed.
  • Relacionar solicitudes con su documento.Relate signature requests to their document.
  • Crear borradores de factura con cliente, líneas, impuestos y totales.Create invoice drafts with client, line items, taxes and totals.
  • Consultar facturas pendientes, pagadas o vencidas.Query draft, paid or overdue invoices.

Qué no puede hacerWhat it cannot do

  • Descargar el PDF original o firmado.Download original or signed PDF files.
  • Crear o eliminar documentos.Create or delete documents.
  • Enviar solicitudes de firma.Send signature requests.
  • Reemitir links o modificar firmantes.Reissue links or modify signers.
  • Enviar facturas por email o cobrar pagos.Email invoices or collect payments.

Problemas frecuentesCommon issues

401 Unauthorized
Falta el header Bearer, el token no es correcto, ha expirado o fue revocado.The Bearer header is missing, or the token is invalid, expired or revoked.
Method not found
Comprueba que el cliente está usando uno de los nombres de herramienta publicados.Check that the client is using one of the published tool names.
Missing invoices:write
Ese token se creó antes de activar la escritura de facturas, o Claude Code sigue usando una configuración antigua. Revócalo, crea un token nuevo y sustituye el servidor SignQuick con el comando actualizado.That token was created before invoice write access was enabled, or Claude Code is still using an old configuration. Revoke it, create a new token and replace the SignQuick server with the updated command.
No aparecen documentosNo documents appear
El MCP solo puede ver documentos y facturas pertenecientes a la misma cuenta que creó el token.MCP can only see documents and invoices owned by the account that created the token.
El cliente no acepta headersClient rejects headers
Ese cliente todavía no puede conectarse directamente a este beta. Necesita soporte para HTTP remoto con autenticación Bearer.That client cannot connect directly to this beta yet. It needs remote HTTP support with Bearer authentication.

Conecta tu asistente con permisos controladosConnect your assistant with controlled permissions

Crea un token, conecta tu cliente y revócalo desde el mismo panel cuando dejes de usarlo.Create a token, connect your client and revoke it from the same dashboard when you stop using it.

Gestionar tokensManage tokens