How to Connect SAGA to Your AI Assistant via MCP

Last updated About 3 hours ago

This guide walks you through connecting your SAGA workspace to major AI chat providers using the SAGA MCP server.

  • Server URL: https://mcp.thesaga.app/mcp

  • Transport: Streamable HTTP

  • Auth: OAuth 2.1 (browser-based login)


Step 1: Make sure you have a SAGA account

You'll log in through your browser during the OAuth flow.


Step 2: Connect to your AI assistant

Pick your assistant below and follow the steps.

Claude Desktop / Claude Cowork

  1. Open Claude Desktop

  2. Click Customize in the left sidebar

  3. Go to Connectors → click + Add custom connector

  4. Paste the URL:

    https://mcp.thesaga.app/mcp
  5. Click Add

  6. Your browser will open asking you to log in to SAGA and authorize the connection

  7. Sign in → click Allow → you're done

The available SAGA tools will appear in Claude automatically.

If you prefer you can follow this guided video tutorial


ChatGPT


ChatGPT requires Pro plan to use custom connectors

  1. Go to SettingsApps & Connectors

  2. Enable Developer mode (toggle at the bottom)

  3. Go back to Apps and click Create app

  4. Enter a name (e.g. "SAGA")

  5. Paste the URL:

    https://mcp.thesaga.app/mcp
  6. Under Authentication, select OAuth

  7. Click Create

  8. Your browser will ask you to log in to SAGA → click Allow

  9. In a new chat, click the + icon next to the message bar → select your SAGA app


Cursor

  1. Open Cursor

  2. Go to SettingsMCP Servers

  3. Click + Add new MCP server

  4. Fill in:

    • Name: saga

    • Type: Streamable HTTP

    • URL: https://mcp.thesaga.app/mcp

  5. Click Add

  6. Your browser will open → log in to SAGA → authorize


Claude Code (terminal)

claude mcp add saga --transport http https://mcp.thesaga.app/mcp

Your browser will open for the OAuth login. Once authorized, run claude mcp list to confirm it's connected.


VS Code (GitHub Copilot)

Create a file .vscode/mcp.json in your project:

{ "servers": { "saga": { "type": "http", "url": "https://mcp.thesaga.app/mcp" } } }

Restart VS Code. The first time Copilot tries to use SAGA, your browser will open for OAuth login.


Gemini CLI

gemini mcp add saga -- https://mcp.thesaga.app/mcp

Step 3: Start using it

Once connected, just ask your AI to do something with SAGA. For example:

  • "Show my recent leads in SAGA"

  • "Create a lead magnet called 'Free PDF Guide'"

  • "What are my contact pipeline stats?"

  • "Add a follow-up task for John in SAGA"


Troubleshooting

Problem Fix

Browser doesn't open for login

Check that your AI client supports OAuth for remote MCP servers

"401 Unauthorized"

Your OAuth session may have expired — remove and re-add the connection

Tools not showing up

Restart the app completely after adding the connection

"Transport not supported"

Make sure you're using Streamable HTTP or SSE, not stdio


One connection, one OAuth login, and your SAGA workspace works across any AI assistant that supports MCP.