Model Context Protocol

Tailor MCP — remote & local

Tailor exposes its document, review, sharing, signing, pages, and PACT/TAP coordination tools to any MCP-compatible runtime — over the streamable HTTP transport at api.tailor.au/mcp or locally over stdio with the Tailor CLI.

Remote MCP (HTTPS)

Recommended for hosted agents

Hosted runtimes like Anthropic remote connectors, Claude Code on a server, Codex/Apps SDK plugins, and any agent that can’t spawn npx should connect over the streamable HTTP transport at https://api.tailor.au/mcp. Authentication is by scoped API key today; OAuth 2.1 + Dynamic Client Registration is planned and gated by #1381.

Generic MCP host configstreamable-http
{
  "mcpServers": {
    "tailor": {
      "type": "url",
      "url": "https://api.tailor.au/mcp",
      "headers": {
        "Authorization": "Bearer tailor_sk_YOUR_KEY"
      }
    }
  }
}
Anthropic Messages API (mcp_servers)Claude
curl https://api.anthropic.com/v1/messages \
  -H "x-api-key: $ANTHROPIC_API_KEY" \
  -H "anthropic-version: 2023-06-01" \
  -H "content-type: application/json" \
  -d '{
    "model": "claude-sonnet-4",
    "max_tokens": 1024,
    "mcp_servers": [
      {
        "type": "url",
        "url": "https://api.tailor.au/mcp",
        "name": "tailor",
        "authorization_token": "tailor_sk_YOUR_KEY"
      }
    ],
    "messages": [
      {"role": "user", "content": "List my Tailor documents and summarise the open review comments."}
    ]
  }'
OpenAI Apps SDK / Codex pluginPointer
# OpenAI Apps SDK / Codex plugin — register Tailor as a remote MCP tool.
# See https://platform.openai.com/docs/apps for the current submission flow.
# Endpoint:        https://api.tailor.au/mcp
# Discovery:       https://api.tailor.au/.well-known/mcp.json
# Auth:            Bearer tailor_sk_... (or X-Api-Key: tailor_sk_...)
# Transport:       streamable-http
# Public manifest: forthcoming with chapter #1382 (OpenAI Apps submission).

Local install (stdio)

Best for IDEs and local agents

Cursor, Claude Desktop, Windsurf, the local Codex CLI, and any local Node-capable MCP host can run the Tailor MCP server over stdio via the published CLI. The CLI talks to the API host (https://api.tailor.au), not the web app.

Run the MCP serverRequires Node.js 20+
npm install -g @tailor-app/cli
export TAILOR_API_KEY=tailor_sk_YOUR_KEY
export TAILOR_BASE_URL=https://api.tailor.au   # talks to the API host, not the web app
npx @tailor-app/cli mcp serve

Cursor / Claude Desktop / Windsurf

Add a mcpServers.tailor entry pointing at npx @tailor-app/cli mcp serve with TAILOR_API_KEY in the env. Or run tailor connect <platform> --write to install it for you.

Generic MCP framework

Standard MCP transport — stdio or streamable HTTP. Works with LangChain MCP adapters, CrewAI, AutoGen, and any host that speaks the protocol.

Tool overview

GroupToolPurpose
Documentstailor_doc_readRead document content as Markdown.
Documentstailor_doc_updateUpdate document HTML content.
Sharingtailor_share_createCreate a shareable review link for a document.
Sharingtailor_share_deleteRevoke a share link.
Reviewtailor_review_statusReview status — reviewer count, comment and change stats.
Reviewtailor_review_commentsRead comments on a document.
Signingtailor_sign_requestRequest signatures on a finalised document.
Pagestailor_pages_publishPublish HTML at a clean /p/<slug> URL.

Full Tailor toolset — documents, review, sharing, signing, pages, PACT/TAP coordination — is exposed when the server runs. The local stdio surface ships every tool today; the remote HTTP surface ships a coordination + read-tool subset (see /docs/agents for the current parity table).

Tailor Intelligence Pty Ltd · Brisbane, Queensland
Tailor MCP — Remote and local Model Context Protocol server