Skip to main content
The Timeless MCP server lets AI assistants like Claude, Cursor, and other MCP-compatible clients access your meetings, transcripts, rooms, documents, and webhooks directly. MCP (Model Context Protocol) is an open standard for connecting AI assistants to external data sources. Instead of copying and pasting data, your assistant can query Timeless on your behalf.

Server URL

Authentication

The MCP server supports two ways to authenticate, both tied to your Timeless account:
  • OAuth 2.1 (recommended) — a browser-based sign-in that your client manages for you.
  • API key — a static bearer token for headless setups or clients that only support custom headers.

OAuth 2.1

By default, the MCP server uses OAuth 2.1 with PKCE. When you first connect, your MCP client opens a browser window where you sign in with your Google or Microsoft account. After you authorize, the client handles token management automatically — no manual token handling required.

API key

If your client supports custom request headers, you can authenticate with a Timeless API token instead of the OAuth flow. Pass it in the Authorization header using the Bearer scheme:
Generate a token from your Timeless dashboard — it is the same token used for the REST API. Tokens are 64-character hex strings; keep them secret and treat them like passwords.

Connecting your client

Use the tabs below for the OAuth flow, or jump to connecting with an API key for header-based authentication.
Add the following to your Claude Desktop configuration file:
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
Restart Claude Desktop. You will be prompted to authorize on first use.

Connecting with an API key

To skip the browser sign-in, add your Timeless API token as an Authorization header in your client configuration. The client connects immediately using the token — no authorization prompt.
Add the following to your Claude Desktop configuration file:
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
Restart Claude Desktop.

Available tools

Once connected, your AI assistant can use the following tools:

Meetings

Rooms

Documents

Webhooks

Example usage

After connecting, you can ask your assistant questions like:
  • “What meetings did I have last week?”
  • “Show me the transcript from my meeting with Sarah”
  • “Summarize the action items from today’s standup”
  • “Create a webhook to notify me when meetings are completed”
The assistant will call the appropriate Timeless tools to answer your questions.