OtterAI MCP connector
OAuth 2.1/DCR TranscriptionProductivityCollaborationConnect to OtterAI MCP. Search meeting recordings, fetch full transcripts, and retrieve user account info from your AI workflows.
OtterAI MCP connector
-
Install the SDK
Section titled “Install the SDK”Terminal window npm install @scalekit-sdk/nodeTerminal window pip install scalekit -
Set your credentials
Section titled “Set your credentials”Add your Scalekit credentials to your
.envfile. Find values in app.scalekit.com > Developers > API Credentials..env SCALEKIT_ENVIRONMENT_URL=<your-environment-url>SCALEKIT_CLIENT_ID=<your-client-id>SCALEKIT_CLIENT_SECRET=<your-client-secret> -
Authorize and make your first call
Section titled “Authorize and make your first call”quickstart.ts import { ScalekitClient } from '@scalekit-sdk/node'import 'dotenv/config'const scalekit = new ScalekitClient(process.env.SCALEKIT_ENV_URL,process.env.SCALEKIT_CLIENT_ID,process.env.SCALEKIT_CLIENT_SECRET,)const actions = scalekit.actionsconst connector = 'otteraimcp'const identifier = 'user_123'// Generate an authorization link for the userconst { link } = await actions.getAuthorizationLink({ connectionName: connector, identifier })console.log('Authorize OtterAI MCP:', link)process.stdout.write('Press Enter after authorizing...')await new Promise(r => process.stdin.once('data', r))// Make your first callconst result = await actions.executeTool({connector,identifier,toolName: 'otteraimcp_get_user_info',toolInput: {},})console.log(result)quickstart.py import osfrom scalekit.client import ScalekitClientfrom dotenv import load_dotenvload_dotenv()scalekit_client = ScalekitClient(env_url=os.getenv("SCALEKIT_ENV_URL"),client_id=os.getenv("SCALEKIT_CLIENT_ID"),client_secret=os.getenv("SCALEKIT_CLIENT_SECRET"),)actions = scalekit_client.actionsconnection_name = "otteraimcp"identifier = "user_123"# Generate an authorization link for the userlink_response = actions.get_authorization_link(connection_name=connection_name,identifier=identifier,)print("Authorize OtterAI MCP:", link_response.link)input("Press Enter after authorizing...")# Make your first callresult = actions.execute_tool(tool_input={},tool_name="otteraimcp_get_user_info",connection_name=connection_name,identifier=identifier,)print(result)
What you can do
Section titled “What you can do”Connect this agent connector to let your agent:
- Search records — Search OtterAI meetings by keyword, title, attendee, folder, date range, or transcript content
- Get user info — Return the name and email of the currently authenticated OtterAI user
- Fetch records — Retrieve the full transcript and metadata for a single OtterAI meeting by its ID
Tool list
Section titled “Tool list”Use the exact tool names from the Tool list below when you call execute_tool. If you’re not sure which name to use, list the tools available for the current user first.
otteraimcp_fetch
#
Retrieve the full transcript and metadata for a single OtterAI meeting by its ID. 1 param
Retrieve the full transcript and metadata for a single OtterAI meeting by its ID.
Name Type Required Description
id string required The unique OtterAI meeting ID to fetch. Get it from the search tool. otteraimcp_get_user_info
#
Return the name and email of the currently authenticated OtterAI user. 0 params
Return the name and email of the currently authenticated OtterAI user.
otteraimcp_search
#
Search OtterAI meetings by keyword, title, attendee, folder, date range, or transcript content. 10 params
Search OtterAI meetings by keyword, title, attendee, folder, date range, or transcript content.
Name Type Required Description
query string required Full-text search query to find meetings by title or transcript content. attended_by string optional Filter meetings attended by this email address. channel_name string optional Filter meetings belonging to this channel or workspace. created_after string optional Return only meetings created after this date (YYYY-MM-DD format, e.g. 2025-01-01). created_before string optional Return only meetings created before this date (YYYY-MM-DD format, e.g. 2025-12-31). folder_name string optional Filter meetings stored in this folder name. include_shared_meetings string optional Set to true to include meetings shared with you by others. keywords_in_transcript string optional Space-separated keywords that must appear in the transcript. title_contains string optional Filter meetings whose title contains this substring. username string optional Filter meetings by the Otter.ai username (email) of the meeting owner.