Connecting Your AI Client

Time to complete: 2–5 minutes
Prerequisites: A Conveyor account. For API token authentication, a Conveyor API token.


Overview

This page walks through connecting your AI client to the Conveyor AI Connector. Pick the option that matches your client: OAuth for Claude, ChatGPT, and other modern MCP clients; API token for Bearer-capable clients; or JSON configuration for clients like Cursor and Claude Code.

Every option points at the same server URL:

https://mcp.conveyor.com/mcp
📘

Enterprise accounts

Some AI providers (ChatGPT Business, Claude Enterprise, etc.) require an organization admin to register custom connectors before individual users can use them. If Conveyor doesn't appear in your connector list after following these steps, ask your IT admin to add it once for the whole organization.


Option 1 — OAuth (Claude, ChatGPT, Any Modern MCP Client)

For OAuth-capable clients, add the server URL as a custom connector or app. The client handles the rest of the flow — you'll log in to Conveyor in the browser and pick which organization to authorize.

Adding the Conveyor AI Connector to Claude Desktop as a custom connector. Adding the Conveyor AI Connector to ChatGPT Business as a custom app.

Once the connector is registered, connect from inside your client:

Connect in Claude

  1. Select the + icon → Manage connectors.
Open Manage connectors from the + menu in Claude.
  1. Select the Conveyor connector and click Connect. Since it's a custom connector, it appears under whatever name your admin gave it when registering it.
Select Connect next to the Conveyor connector in Claude.

Connect in ChatGPT Business

  1. Search for Conveyor in the app list.
Search for Conveyor in the ChatGPT Business app list.
  1. Select Connect.
Select Connect to authorize the Conveyor app in ChatGPT Business.

Option 2 — API Token (Bearer-Capable Clients)

Any MCP-compatible client can connect by pointing to the server URL and including your API token as a Bearer token in the Authorization header:

SettingValue
Server URLhttps://mcp.conveyor.com/mcp
Auth typeBearer token
TokenYour Conveyor API token

Refer to your client's documentation for where to configure remote MCP servers. For example, in the OpenAI Playground:

Adding the Conveyor AI Connector to the OpenAI Playground using API token authentication.

Option 3 — JSON-Configured Clients (Cursor, Claude Code, etc.)

Add the following configuration to the client's JSON settings:

{
  "mcpServers": {
    "conveyor": {
      "url": "https://mcp.conveyor.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}

For Claude Code, you may also run the following command to add Conveyor to your MCP server list:

claude mcp add --transport http Conveyor https://mcp.conveyor.com/mcp --header "Authorization: Bearer YOUR_API_TOKEN"

Common Questions

Q: Do I need engineering help to set this up?
A: No. For OAuth-capable clients, add the server URL as a custom connector and the client handles the rest. For token-based clients, you paste a URL and a token — no custom integration, no API scripting.

Q: Which option should I pick if my client supports both?
A: OAuth. It's tied to your Conveyor user and inherits your per-organization permissions — see Authentication for the full comparison.

Q: My client connected, but the assistant isn't using Conveyor. What now?
A: Ask it explicitly — e.g. "Using the Conveyor connector, show me questionnaires due this week." Assistants with many connectors sometimes need a nudge toward the right tool.


What's Next?


Need help? Visit the Integration Issues guide or contact [email protected].


Did this page help you?