# swiftsign_create_embedded_url

Mint a short-lived embedded signing URL for a recipient (30-minute expiry). Returns a url to embed plus its expiresAt. The envelope must already be SENT. Works in both sandbox (sk_test_ keys) and live.

Agent View of the PolicyLayer registry record for `swiftsign_create_embedded_url`. HTML page: https://policylayer.com/tools/ca-swiftsign-mcp/swiftsign-create-embedded-url

## Facts

- Tool: `swiftsign_create_embedded_url`
- Server: Mcp (`https://swiftsign.ca/mcp`) — https://policylayer.com/tools/ca-swiftsign-mcp.md
- Homepage: https://github.com/shahdadk/swiftsign
- Risk category: Execute (High risk)
- Registry record: grade F, identity unverified
- Server auth posture: open
- Server rate-limited: no
- Parameters: 3 (2 required)
- Recommended policy verdict: Rate-limited

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `returnUrl` | string | no | URL to redirect the signer to after they finish |
| `envelopeId` | string | yes | The envelope ID |
| `recipientId` | string | yes | The recipient ID within that envelope |

Parameters from the server's own tool schema.

## Example call (MCP tools/call, JSON-RPC 2.0)

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "swiftsign_create_embedded_url",
    "arguments": {
      "envelopeId": "<envelopeId>",
      "recipientId": "<recipientId>"
    }
  }
}
```

## Why swiftsign_create_embedded_url is rated High

This tool generates (mints) a time-limited signing URL, which is an external operation that creates an active signing session for a recipient. It doesn't just read data — it triggers the creation of a functional signing link that can be used to execute a legally binding e-signature workflow.

From the tool's own definition: "Mint a short-lived embedded signing URL for a recipient (30-minute expiry). Returns a url to embed plus its expiresAt."

## Use case

AI agents invoke swiftsign_create_embedded_url to trigger actions in Mcp. What it does depends on the arguments the agent supplies, and its effects often reach beyond the immediate call: builds kicked off, notifications sent, workflows started.

## Recommended policy (PolicyLayer)

Verdict: **Rate-limited**. Enforced by the PolicyLayer MCP gateway (https://policylayer.com/mcp-gateway) before a call reaches Mcp:

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "swiftsign_create_embedded_url": {
      "limits": [
        {
          "counter": "swiftsign_create_embedded_url_rate",
          "window": "minute",
          "max": 10,
          "scope": "grant"
        }
      ]
    }
  }
}
```

## Other tools on Mcp (9)

- `swiftsign_void_envelope` — Destructive — https://policylayer.com/tools/ca-swiftsign-mcp/swiftsign-void-envelope.md
- `swiftsign_upgrade` — Financial — https://policylayer.com/tools/ca-swiftsign-mcp/swiftsign-upgrade.md
- `swiftsign_check_status` — Read — https://policylayer.com/tools/ca-swiftsign-mcp/swiftsign-check-status.md
- `swiftsign_download_signed_pdf` — Read — https://policylayer.com/tools/ca-swiftsign-mcp/swiftsign-download-signed-pdf.md
- `swiftsign_list_envelopes` — Read — https://policylayer.com/tools/ca-swiftsign-mcp/swiftsign-list-envelopes.md
- `swiftsign_list_templates` — Read — https://policylayer.com/tools/ca-swiftsign-mcp/swiftsign-list-templates.md
- `swiftsign_confirm_send` — Write — https://policylayer.com/tools/ca-swiftsign-mcp/swiftsign-confirm-send.md
- `swiftsign_send_envelope` — Write — https://policylayer.com/tools/ca-swiftsign-mcp/swiftsign-send-envelope.md
- `swiftsign_send_from_template` — Write — https://policylayer.com/tools/ca-swiftsign-mcp/swiftsign-send-from-template.md

## For agents

This record is a snapshot. Live verdicts and the full registry:

- Check every server in your MCP config at once: `npx -y policylayer stack`
- Vet a server before you add it: install the mcp-precheck skill — `npx skills add https://policylayer.com` (skill text: https://policylayer.com/skill.md)
- Query the registry over MCP: endpoint `https://api.policylayer.com/mcp` — tools `check_mcp_server`, `check_mcp_stack`, `check_tool`, `search_registry`, `get_change_events`

---

Source: the PolicyLayer MCP registry — one continuously verified record per MCP server. Full record: https://policylayer.com/registry?q=ca-swiftsign-mcp · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/ca-swiftsign-mcp
