# Signaturely — how to use (mcp.ai)

Connect your Signaturely account and use 9 tools for e-signatures straight from your AI agent. Connect with your own API key. Signaturely is an electronic signature platform that allows users to sign documents online, offering features like automated signature requests, templates, and integrations with other platforms.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_signaturely?ms=1787291340000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `signaturely_create_folder`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/signaturely`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/signaturely/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/signaturely/create/folder` — Tool to create a new folder for organizing documents. Use when you need to create a folder structure for document management.
  - body: { title: string }
- `POST https://api.mcp.ai/api/signaturely/get/current/user` — Tool to get the current authenticated user information. Use this to retrieve account details including email, name, role, status, and avatar URL.
- `POST https://api.mcp.ai/api/signaturely/get/folder` — Tool to get folder information by ID. Use when you need to retrieve details about a specific folder including its subfolders and documents count.
  - body: { id: string }
- `POST https://api.mcp.ai/api/signaturely/get/recent/document` — Tool to retrieve the most recent sent or completed document. Use when you need to fetch the latest document of a specific type (sent or completed).
  - body: { recentDocumentType: string }
- `POST https://api.mcp.ai/api/signaturely/list/documents` — Tool to list all documents. Use after authenticating to retrieve documents with optional filters and pagination.
  - body: { page?: integer, limit?: integer, user_id?: integer, statuses?: string[], template?: boolean, created_at_to?: string, created_at_from?: string }
- `POST https://api.mcp.ai/api/signaturely/list/folders` — Tool to get list of folders for documents. Use to retrieve all folders for organizing documents.
  - body: { page?: integer, limit?: integer }
- `POST https://api.mcp.ai/api/signaturely/list/team/members` — Tool to list all team members in the Signaturely account. Returns team users with their account types and roles (Owner, Admin, User).
- `POST https://api.mcp.ai/api/signaturely/rename/folder` — Tool to rename a folder via API call. Use when you need to update the title of an existing folder.
  - body: { id: string, title: string }
- `POST https://api.mcp.ai/api/signaturely/search/templates/documents` — Tool to search for templates or documents by matching text. Use when you need to find specific templates or documents by name or text content.
  - body: { page?: integer, limit?: integer, search?: string, search_type?: string }

## Example prompts
- "What can I do in Signaturely?"
- "Show me a summary of my Signaturely account"

## More
- Page: https://mcp.ai/signaturely
- Agent spec (llms.txt): https://mcp.ai/signaturely/llms.txt
- Postman collection: https://mcp.ai/signaturely/postman.json
