Skip to main content

Using the Archive MCP Server

How to connect your AI assistant directly to your Archive data with the MCP server.

Written by Luiza Diniz

πŸ“‹ Available on: the same 2026 plans that include API access β€” Startup, Growth, Enterprise, Agency 2026, Agency 2026 Unlimited, and Custom. Not available on legacy or Free plans.

The Archive MCP server connects your AI assistant directly to your Archive data. Instead of writing API queries, you add Archive as a connector in your assistant once, then just ask in plain language β€” "find this creator", "pull the transcript for this video", "show my competitor brands" β€” and the assistant calls Archive for you.

MCP (Model Context Protocol) is an open standard supported by many AI assistants, including Claude (claude.ai, Claude Desktop, Claude Code), ChatGPT, Cursor, Windsurf, Cline, and VS Code.


What You Can Do With It

The MCP server can both read your workspace and make changes to it β€” just ask in plain language.


Read Your Data

  • Workspaces β€” list the workspaces you can access and see what each one tracks (hashtags, mentions, keywords, connected accounts).

  • Content β€” search tracked posts and videos, pull the underlying media, get video transcriptions, and resolve a post URL to its item in Archive.

  • Creators & social profiles β€” search creators and social profiles, open a single one, and pull a profile's historical engagement.

  • Competitors β€” list tracked competitor brands and pull their content.

  • Campaigns & more β€” read campaigns, saved views and filter presets, custom attribute definitions, and the status of long-running operations.


Make Changes

The MCP server can also act on your workspace, not just read it:

  • Collections β€” create, rename, or delete a collection (a hand-picked set of posts), and add or remove posts from it.

  • Saved Views β€” create, update, or delete a saved view (a saved set of filters) for content, creators, or social profiles, and add it to a group.

  • Groups β€” create, rename, or delete a group (a folder that organizes your saved views), reorder the views inside, and add views to it.

  • Content actions β€” import a post into Archive from its link, or queue a bulk engagement refresh on posts (this spends credits and requires the refresh-engagement feature flag to be enabled on your workspace).

✨ New: whether a write action asks you to confirm first depends on the tool-permission settings each person sets in their AI client. Deleting a collection, saved view, or group only removes that item β€” never the underlying content, creators, or media.


How to Connect

⚠️ Important Note: Before you connect, please make sure you're logged in to your Archive account.

In Archive, go to Settings β†’ API β†’ Connect an agent and pick your assistant β€” Claude (claude.ai), Claude Code, Claude Desktop, ChatGPT, or Other β€” then follow the steps shown for that assistant. The server URL is:

https://app.archive.com/api/v2/mcp

πŸ“‹ The server URL isn't a page you open in your browser β€” it goes into your assistant's connector settings. Start in the assistant you want to connect (open Claude, ChatGPT, etc.), then add Archive there. Each assistant's panel also links out to that tool's own setup documentation.

πŸ“‹ Adding Archive to Claude or ChatGPT: Archive isn't listed in either connector directory yet, so in both you add it as a custom connector. The server behaves identically either way β€” this is a listing status, not a capability difference.

ChatGPT specifics: on Business and Enterprise workspaces, only an admin can create the connector for the workspace. On Plus and Pro, individual users can add it themselves via Developer Mode and get read-only tools.


Browser sign-in (recommended)

One-click sign-in through Archive in your browser β€” no API token to copy or store, and access is tied to you personally. This is the flow for Claude (on claude.ai), ChatGPT, and Claude Desktop.

In your assistant (claude.ai, ChatGPT, or Claude Desktop):

  1. Open Settings β†’ Connectors.

  2. Choose Add custom connector (or MCP server).

  3. Paste the server URL above.

  4. Click Connect and sign in with Archive. The connection stays live after that.

One-click setup: Archive now offers prefilled setup prompts for Claude Desktop and Claude Code that let you launch the connection in one click. For ChatGPT and Claude web, use the compact copy controls to grab the exact command or paste the server URL. This keeps setup fast while keeping each step transparent.


Terminal (Claude Code)

Claude Code connects from the command line instead of a connector menu, and lands in the same browser sign-in shown above β€” no API token needed.

claude mcp add --transport http archive \
https://app.archive.com/api/v2/mcp

Run it, then approve the sign-in that opens.


Config file

Claude Code and Claude Desktop also offer a config-file option, and it's how you connect any Other client (Cursor, VS Code, Windsurf, Cline, Zed, SDKs). A project or desktop .mcp.json bridges to the server with mcp-remote and your API token β€” handy for scripted or shared setups, or for pinning an agency token across an organization.

{
"mcpServers": {
"archive": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://app.archive.com/api/v2/mcp",
"--header", "Authorization: Bearer ${ARCHIVE_TOKEN}"
],
"env": {
"ARCHIVE_TOKEN": "<your-api-token>"
}
}
}
}

You can also copy the exact per-client snippet from Settings β†’ API, or connect directly over SDK / HTTP using the server URL and an Authorization: Bearer <your-api-token> header. To generate a token, see Generating an API Token; full details at api-docs.archive.com/mcp/connecting.


Managing Connections

Browser sign-in is per person β€” each user authorizes their own assistant under the workspace. You can see and revoke connections at any time under Authorized connections on the same Settings β†’ API screen; anyone in the workspace can revoke any listed connection.


Reconnection Required for Write Permissions

If you connected the Archive MCP server before write actions were implemented, you'll need to disconnect and reconnect to grant write permissions. The reconnection updates your access scope from read-only to read+write.

Users who connect the MCP server after this update automatically receive full read+write permissions β€” no extra steps needed.


Good to Know

  • Reads and writes. The MCP server can read your workspace and make changes to it β€” deleting a collection, saved view, or group only removes that item, never the underlying content.

  • Multiple workspaces. If your access spans more than one workspace, tell the assistant which workspace to use (it can list them first). With a single-workspace token this is automatic.

  • Rate limit. MCP requests share the same budget as the API β€” there's no separate MCP allowance. Two ceilings apply at the same time: a plan-sized credit budget that refills every second, and a flat 5 requests per second, per workspace. Each MCP tool call maps to a query and costs what that query costs. See api-docs.archive.com/concepts/rate-limiting for the full breakdown.

  • Agencies. An agency-level token works through the MCP server the same way it does on the API.


For the full technical reference and per-client setup snippets, see api-docs.archive.com/mcp/connecting. If you have questions, chat with us or email [email protected]. We're happy to help.

Did this answer your question?