drio
Launch And Access

Connect To AI Clients

Share your drio endpoint with ChatGPT, Claude, Cursor, and other MCP-compatible clients.

Every drio app gets a unique MCP endpoint URL. This is the address that lets AI clients connect to the app you built in the dashboard.

What This Page Is For

Use this page when you are ready to:

  • test the app outside the drio preview
  • share it with a teammate who owns the AI client setup
  • prepare for internal rollout or a pilot

Your Endpoint URL

Your app endpoint follows this pattern:

https://getdrio.com/api/mcp/your-app-slug

The slug is based on your app name and is visible in the app settings.

Mermaid diagram source:
flowchart LR
  endpoint["drio MCP endpoint<br/>https://getdrio.com/api/mcp/your-app-slug"]
  chatgpt["ChatGPT"]
  claude["Claude Desktop"]
  cursor["Cursor"]
  other["Other MCP clients"]

  chatgpt --> endpoint
  claude --> endpoint
  cursor --> endpoint
  other --> endpoint

Decide Who Should Own The Connection

In many teams, the person building the app is not the same person who manages the AI client setup.

RoleUsually owns this when...
GTM or marketing operatorthe team is piloting directly in one shared client
RevOps or enablementthe rollout is tied to team workflows and change management
Engineering or ITthe client setup is managed centrally or needs security review

Connect Common Clients

ChatGPT

Add the MCP endpoint in ChatGPT where connected tools are managed. The exact settings surface may change over time, but the key input is the HTTP endpoint URL for your app.

Use ChatGPT when your team already works there and wants the shortest path to a pilot.

Claude Desktop

Claude Desktop can connect through an MCP server configuration file.

{
  "mcpServers": {
    "my-drio-app": {
      "url": "https://getdrio.com/api/mcp/your-app-slug"
    }
  }
}

After saving the config, restart Claude Desktop and test the app with a few real prompts.

Cursor

In Cursor, add a new MCP server using the HTTP endpoint:

  • Type: HTTP
  • URL: https://getdrio.com/api/mcp/your-app-slug

This is useful when the app is part of an internal workflow and the team already spends time in Cursor.

Test Before You Share Widely

  • run the top prompts your audience is most likely to ask
  • confirm each tool is selected consistently
  • check whether the widgets still feel clear in the target client
  • make sure branding and naming hold up outside the drio preview

When Technical Review Helps

Bring in a technical reviewer when:

  • the app needs user-specific auth
  • the upstream API has strict security or networking requirements
  • the endpoint will be distributed broadly across the company
  • the team wants direct validation of transport and auth behavior