Skip to content

MCP Server

The Record Meeting MCP (Model Context Protocol) server lets AI assistants like Claude, Cursor, and other MCP-compatible clients access your recordings, transcripts, and organizations directly.

Model Context Protocol is an open standard that lets AI assistants connect to external tools and data sources. By connecting your AI assistant to the Record Meeting MCP server, you can ask questions about your meetings, search transcripts, manage recordings, and more — all from within your AI workflow.

  • A Record Meeting account with at least one recording
  • An API key (see API Keys)
  • An MCP-compatible client (e.g. Claude Desktop, Claude Code, Cursor)

The Record Meeting MCP server is available at:

https://api.recordmeeting.com/mcp

Add the following to your Claude Desktop configuration file (claude_desktop_config.json):

{
"mcpServers": {
"recordmeeting": {
"url": "https://api.recordmeeting.com/mcp",
"headers": {
"Authorization": "Bearer <your_api_key>"
}
}
}
}

Run the following command in your terminal:

Terminal window
claude mcp add recordmeeting
--transport http
--url https://api.recordmeeting.com/mcp
--header "Authorization: Bearer <your_api_key>"

Add the following to your .cursor/mcp.json file:

{
"mcpServers": {
"recordmeeting": {
"url": "https://api.recordmeeting.com/mcp",
"headers": {
"Authorization": "Bearer <your_api_key>"
}
}
}
}

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

ToolDescription
list_recordingsList your recordings with optional filters (status, date range, folder, organization)
get_recordingGet details for a specific recording including download link and notes
get_transcriptRetrieve transcript segments for a recording
search_recordingsSearch recordings by keyword across titles and transcripts
get_recording_by_dateFind recordings from a specific date or date range
update_recordingUpdate a recording’s title or meeting notes
delete_recordingPermanently delete a recording
get_share_linkCreate a sharing link with configurable permissions
ToolDescription
list_organizationsList organizations you belong to
list_foldersList folders within an organization
list_membersList members of an organization with their roles

Once connected, try asking your AI assistant things like:

  • “What meetings did I have last week?”
  • “Summarize the key decisions from yesterday’s standup”
  • “Search my recordings for discussions about the product launch”
  • “What action items came out of the Q1 planning meeting?”
  • “Share the recording from this morning’s sync with view-only access”

“Unauthorized” or “401” errors

  • Make sure your API key is valid and has not been revoked
  • Check that the Authorization header uses the Bearer prefix

Tools not appearing

  • Verify the server URL is exactly https://api.recordmeeting.com/mcp
  • Restart your AI client after updating the configuration

No recordings returned

  • Confirm your account has recordings by checking the Record Meeting dashboard
  • If using an organization context, make sure your role grants access to recordings