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
- Open Connect AI in SauceTab.
- Name the connection and choose its spaces. Leave Allow changes off for reading only.
- 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
- Open Customize → Connectors → + → Add custom connector.
- Name it SauceTab. Paste this URL and click Add.
https://api.saucetab.com/mcp- Click Connect. Sign in to SauceTab, choose your workspace and access, then approve.
- In a new chat, enable SauceTab under + → Connectors.
Team accounts may need an owner to add it. Claude setup help
Add it to Codex
- 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" }- Save the file and restart Codex.
Add it to Claude Code
- 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"- Restart the session. Run
/mcpto check SauceTab is connected.
Add it to Cursor
- Add this server to
~/.cursor/mcp.json, keeping existing servers.
{
"mcpServers": {
"saucetab": {
"url": "https://api.saucetab.com/mcp",
"headers": { "Authorization": "Bearer sauce_YOUR_KEY" }
}
}
}- Save the file and restart Cursor.
Add it to OpenCode
- 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" }
}
}
}- Restart OpenCode. Run
opencode mcp listto check the connection.
Add it to VS Code
- Add this server to
.vscode/mcp.jsonin 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" }
}
}
}- Run MCP: List Servers from the Command Palette. Select SauceTab and start it.
Claude Desktop
- Open Customize → Connectors → + → Add custom connector.
- Name it SauceTab. Paste this URL and click Add.
https://api.saucetab.com/mcp- Click Connect. Sign in to SauceTab, choose your workspace and access, then approve.
- In a new chat, enable SauceTab under + → Connectors.
Team accounts may need an owner to add it. Claude Desktop setup help
ChatGPT
- Enable Developer mode in Settings → Apps → Advanced settings. Your plan or admin must allow it.
- Open Apps → Create. Name it SauceTab, paste this URL, and choose OAuth.
https://api.saucetab.com/mcp- Click Scan Tools. Sign in to SauceTab, review access, then click Create.
- Open a new chat and select SauceTab from the tools menu.
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.
| Tool | Purpose |
|---|---|
| list_buckets | List spaces. |
| list_clips | List a space’s sources. |
| list_recent | Find recent sources. |
| search_clips | Search saved sources. |
| get_clip | Read one source. |
| get_clips | Read multiple sources. |
| find_connections | Find related sources. |
| analyze_bucket | Read space themes. |
| get_bucket_digest | Read space updates. |
| get_bucket_graph | Read source connections. |
| generate_ideas | Generate ideas. |
| list_ideas | List saved ideas. |
| get_idea | Read an idea. |
| capture_url | Save a public URL. |
| get_ingestion | Check source processing. |
| add_clip_note | Add a source note. |
| create_bucket | Create a space. |
| move_clip | Move a source. |
| get_publishing_guide | Read page requirements. |
| list_artifacts | List pages. |
| get_artifact | Read a page. |
| upload_artifact | Upload a draft. |
| finalize_artifact_upload | Finish draft upload. |
| publish_artifact | Publish a reviewed version. |
| unpublish_artifact | Unpublish a page. |
Contact support · Updated September 11, 2026