Skip to main content

Tactiq MCP Server

Using Tactiq with AI assistants (MCP)

Written by Alex Leonov

Tactiq's MCP server lets AI assistants — like Claude, Cursor, or any MCP-compatible tool — read your meetings directly. Ask your AI assistant things like "what were the action items from my last standup?" or "find my meetings with Sarah from last week" without copy-pasting anything.

Requirements

  • Any Tactiq account can search and list meetings

  • A Tactiq Team plan (or higher) is required to read meeting summaries and AI artifacts

Connecting your AI assistant

Most MCP clients support automatic setup — paste the server URL and the client will walk you through authorizing with your Tactiq account via a browser sign-in. No API keys to copy.

Claude Desktop example

Add this to your claude_desktop_config.json:

{   "mcpServers": {     "tactiq": {       "command": "mcp-remote",       "args": ["https://mcp.tactiq.io"]     }   } }

Then restart Claude Desktop. On first use it will open a browser to authorize your Tactiq account.

Note: mcp-remote is a small helper that bridges desktop apps to HTTP-based MCP servers. Install it with npm install -g mcp-remote if your client doesn't bundle it.

Permissions (scopes)

When you authorize, you choose what the AI assistant can access:

Permission

What it allows

mcp:meetings:own

Your own meetings

mcp:meetings:shared

Meetings shared with you

mcp:meetings:spaces

Meetings in shared spaces

mcp:meetings:details

Full summaries and AI artifacts (requires Team plan)

You can authorize with a limited set of scopes if you prefer the AI only sees certain meetings.

What your AI assistant can do

  • List recent meetings — browse your latest meetings by date

  • Search meetings — find meetings by keyword, participant name, or date range

  • Read meeting summaries — get the AI-generated detailed summary for any meeting

  • Browse AI artifacts — list and read action items, email drafts, slide deck content, and other AI outputs generated for a meeting

  • Check generation status — if a summary is still being generated, poll for when it's ready

The AI does not access your raw transcript — only summaries and AI-generated artifacts.

Revoking access

To disconnect an AI assistant, go to Settings → MCP in Tactiq and revoke the relevant authorization. This immediately invalidates the assistant's access.

Troubleshooting

"Active team seat required" — The meeting details tools require a Team plan. Upgrade your plan or ask your team admin to assign you a seat.

"Meeting not accessible" — The meeting isn't covered by the scopes you authorized. Re-authorize and include the appropriate scope (e.g. mcp:meetings:shared).

Authorization loop — Try clearing your browser cookies for tactiq.io and reconnecting.

Did this answer your question?