Connect AI

Your sources.
In your AI app.

MCP connects your AI to SauceTab so it can search and use the sources you save.

First, save a source in SauceTab. Connections are included on every plan.

01 Choose your app

02 Connect SauceTab

Create your connection key

  1. Open Connect AI in SauceTab.
  2. Name the connection and choose its spaces. Leave Allow changes off for reading only.
  3. Click Create connection. Copy the key, shown once.

Replace sauce_YOUR_KEY below. Keep your key private and out of shared files.

Browser sign-in. No key to copy.

Claude web app

  1. Open Customize → Connectors → + → Add custom connector.
  2. Name it SauceTab. Paste this URL and click Add.
https://api.saucetab.com/mcp
  1. Click Connect. Sign in to SauceTab, choose your workspace and access, then approve.
  2. In a new chat, enable SauceTab under + → Connectors.

Team accounts may need an owner to add it. Claude setup help

Add it to Codex

  1. Add this block to ~/.codex/config.toml, keeping existing servers.
[mcp_servers.saucetab]
url = "https://api.saucetab.com/mcp"
http_headers = { "Authorization" = "Bearer sauce_YOUR_KEY" }
  1. Save the file and restart Codex.

Codex setup help

Add it to Claude Code

  1. Replace the key and run this in your terminal.
claude mcp add --transport http --scope user saucetab \
  https://api.saucetab.com/mcp \
  --header "Authorization: Bearer sauce_YOUR_KEY"
  1. Restart the session. Run /mcp to check SauceTab is connected.

Claude Code setup help

Add it to Cursor

  1. Add this server to ~/.cursor/mcp.json, keeping existing servers.
{
  "mcpServers": {
    "saucetab": {
      "url": "https://api.saucetab.com/mcp",
      "headers": { "Authorization": "Bearer sauce_YOUR_KEY" }
    }
  }
}
  1. Save the file and restart Cursor.

Cursor setup help

Add it to OpenCode

  1. Add this server to opencode.json, keeping existing settings.
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "saucetab": {
      "type": "remote",
      "url": "https://api.saucetab.com/mcp",
      "enabled": true,
      "oauth": false,
      "headers": { "Authorization": "Bearer sauce_YOUR_KEY" }
    }
  }
}
  1. Restart OpenCode. Run opencode mcp list to check the connection.

OpenCode setup help

Add it to VS Code

  1. Add this server to .vscode/mcp.json in your project, keeping existing servers. Do not commit your key.
{
  "servers": {
    "saucetab": {
      "type": "http",
      "url": "https://api.saucetab.com/mcp",
      "headers": { "Authorization": "Bearer sauce_YOUR_KEY" }
    }
  }
}
  1. Run MCP: List Servers from the Command Palette. Select SauceTab and start it.

VS Code setup help

Claude Desktop

  1. Open Customize → Connectors → + → Add custom connector.
  2. Name it SauceTab. Paste this URL and click Add.
https://api.saucetab.com/mcp
  1. Click Connect. Sign in to SauceTab, choose your workspace and access, then approve.
  2. In a new chat, enable SauceTab under + → Connectors.

Team accounts may need an owner to add it. Claude Desktop setup help

ChatGPT

  1. Enable Developer mode in Settings → Apps → Advanced settings. Your plan or admin must allow it.
  2. Open Apps → Create. Name it SauceTab, paste this URL, and choose OAuth.
https://api.saucetab.com/mcp
  1. Click Scan Tools. Sign in to SauceTab, review access, then click Create.
  2. Open a new chat and select SauceTab from the tools menu.

ChatGPT availability and setup help

03 Try it

In your connected app, send:

List my SauceTab spaces, then show the latest sources in one of them.

You should see saved source titles and links. Nothing there? Check that the connection can access a space with saved sources.

Need a hand?

Unauthorized or no tools?

Reconnect or replace a revoked, expired, or incomplete key. Restart the app. Available tools depend on your permissions.

Search returns nothing?

Save a source in an allowed space. Try an exact phrase. Search by meaning requires Starter or above and completed processing.

Permissions, privacy, and costs

You control access

Each connection uses one workspace. Keys can be limited to selected spaces. Enable writing or page publishing only when needed. Revoke access in Connect AI.

Plan limits still apply

MCP reads use no SauceTab AI credits. AI generation and source-saving limits follow your plan. Your AI app is billed separately.

Connecting AI does not create a public share link. Privacy policy · Plan details

Technical reference and tools

Server

https://api.saucetab.com/mcp
Streamable HTTP. Bearer key or OAuth. No local server required.

Tools

API names: bucket = space, clip = source, artifact = page.

ToolPurpose
list_bucketsList spaces.
list_clipsList a space’s sources.
list_recentFind recent sources.
search_clipsSearch saved sources.
get_clipRead one source.
get_clipsRead multiple sources.
find_connectionsFind related sources.
analyze_bucketRead space themes.
get_bucket_digestRead space updates.
get_bucket_graphRead source connections.
generate_ideasGenerate ideas.
list_ideasList saved ideas.
get_ideaRead an idea.
capture_urlSave a public URL.
get_ingestionCheck source processing.
add_clip_noteAdd a source note.
create_bucketCreate a space.
move_clipMove a source.
get_publishing_guideRead page requirements.
list_artifactsList pages.
get_artifactRead a page.
upload_artifactUpload a draft.
finalize_artifact_uploadFinish draft upload.
publish_artifactPublish a reviewed version.
unpublish_artifactUnpublish a page.

Contact support · Updated September 11, 2026