MindSim MCP Server

Connect any MCP client to MindSim AI

A Model Context Protocol server that connects AI applications to MindSim's digital twin technology for enhanced reasoning capabilities.

Server Endpoint
https://mcp.mindreasoner.com/mcp

Get Started

  1. Get your API key from https://app.workflows.com
  2. Choose your setup:

For Claude Code:

Copied!
claude mcp add \ --transport http \ mindsim \ https://mcp.mindreasoner.com/mcp \ --header "Authorization: Bearer YOUR_API_KEY"

For Custom MCP Client:

Copied!
{ "url": "https://mcp.mindreasoner.com/mcp", "transport": "http", "headers": { "Authorization": "Bearer YOUR_API_KEY" } }

Available Tools (25 total)

Mind Management (6)

  • get_all_minds — List all minds (supports tag filtering)
  • search_minds — Search minds by name, email, or attributes
  • get_mind_by_id — Get a specific mind by ID
  • create_mind — Create a new digital mind
  • update_mind — Update an existing mind
  • delete_mind — Delete a mind and all data

Simulations (4)

  • simulate — Run AI predictions on a mind
  • list_simulations — List all simulations with pagination
  • get_simulation — Get a simulation by ID
  • delete_simulation — Delete a simulation

Snapshots & Uploads (9)

  • get_signed_upload_url — Get secure upload URL
  • upload_file_to_signed_url — Upload transcript files
  • create_snapshot — Process uploaded data
  • list_snapshots — List snapshots for a mind
  • get_snapshot_status — Check processing status
  • get_snapshot_details — Get snapshot with transcript/psychometrics
  • delete_snapshot — Delete a snapshot
  • link_snapshot — Link digital twin to snapshot
  • unlink_snapshot — Unlink digital twin from snapshot

Analytics (2)

  • get_psychometrics — Get psychometric analysis
  • get_mind_topics — Get topic analysis

Tag Management (4)

  • get_all_tags — List all organization tags
  • update_tag — Rename a tag across all minds
  • delete_tag — Delete a tag from workspace
  • set_mind_tags — Set/replace tags for a mind

Gong Integration

Access call recordings and transcripts from your Gong account.

Prerequisites:

  1. Must have Technical Administrator role in Gong
  2. Sign in to app.gong.io/company/api
  3. Click "Create" to generate an Access Key and Access Key Secret
  4. ⚠️ Important: Copy the Access Key Secret immediately—it won't be shown again!

For Claude Code:

Copied!
claude mcp add \ --transport http \ mindsim \ https://mcp.mindreasoner.com/mcp \ --header "Authorization: Bearer YOUR_API_KEY" \ --header "X-Gong-Access-Key: YOUR_ACCESS_KEY" \ --header "X-Gong-Access-Secret: YOUR_ACCESS_KEY_SECRET"

For Custom MCP Client:

Copied!
{ "url": "https://mcp.mindreasoner.com/mcp", "transport": "http", "headers": { "Authorization": "Bearer YOUR_API_KEY", "X-Gong-Access-Key": "YOUR_ACCESS_KEY", "X-Gong-Access-Secret": "YOUR_ACCESS_KEY_SECRET" } }

Fathom Integration

Import meeting transcripts and recordings from Fathom AI.

Prerequisites:

  1. Sign in to your Fathom account
  2. Navigate to Settings → API Access
  3. Click "Generate API Key"
  4. ⚠️ Important: Store your API key securely—you won't be able to view it again!

For Claude Code:

Copied!
claude mcp add \ --transport http \ mindsim \ https://mcp.mindreasoner.com/mcp \ --header "Authorization: Bearer YOUR_API_KEY" \ --header "X-Fathom-Api-Key: YOUR_FATHOM_API_KEY"

For Custom MCP Client:

Copied!
{ "url": "https://mcp.mindreasoner.com/mcp", "transport": "http", "headers": { "Authorization": "Bearer YOUR_API_KEY", "X-Fathom-Api-Key": "YOUR_FATHOM_API_KEY" } }

Fireflies Integration

Import meeting transcripts with speaker attribution from Fireflies AI.

Prerequisites:

  1. Sign in to your Fireflies AI account at app.fireflies.ai
  2. Navigate to Settings → Integrations → API
  3. Click "Generate API Key"
  4. ⚠️ Important: Copy your API key immediately—it cannot be viewed again!

Note on Speaker Emails: Fireflies speaker emails are inferred by matching speaker names with meeting attendee emails. This works well for Zoom/Google Meet but may be less reliable for other platforms.

For Claude Code:

Copied!
claude mcp add \ --transport http \ mindsim \ https://mcp.mindreasoner.com/mcp \ --header "Authorization: Bearer YOUR_API_KEY" \ --header "X-Fireflies-Api-Key: YOUR_FIREFLIES_API_KEY"

For Custom MCP Client:

Copied!
{ "url": "https://mcp.mindreasoner.com/mcp", "transport": "http", "headers": { "Authorization": "Bearer YOUR_API_KEY", "X-Fireflies-Api-Key": "YOUR_FIREFLIES_API_KEY" } }

Zoom Integration

Import cloud recordings and meeting transcripts from Zoom.

Setup Instructions:

  1. Sign in to your MindSim account at https://app.workflows.com
  2. Navigate to Settings → Integrations
  3. Click Connect Zoom and authorize access
  4. Return to this page—no additional configuration needed!

✨ Automatic Integration: Zoom works automatically once enabled in your MindSim account. Use the same connection command as "MindSim Only"—no extra headers required.

Connection Command (Same as Basic Setup):

After enabling Zoom in your MindSim account, connect using the standard command from the "MindSim Only" tab above. The server will automatically detect your Zoom integration and provide 3 additional tools.

Available Tools: Once connected, you'll have access to zoom_list_recordings, zoom_get_transcript, and zoom_get_meeting_details for accessing your Zoom cloud recordings and transcripts.