{
  "info": {
    "name": "Fireflies — mcp.ai",
    "description": "REST API for the Fireflies MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/fireflies",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "fireflies_add_to_live",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/to/live",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "to",
            "live"
          ]
        },
        "description": "The addtolive action allows you to add the fireflies.ai bot to an ongoing meeting. note: this action requires a paid fireflies plan to add bots to meetings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"duration\": 0,\n  \"language\": \"\",\n  \"attendees\": \"\",\n  \"meeting_link\": \"\",\n  \"meeting_password\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fireflies_delete_transcript_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/transcript/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "transcript",
            "by",
            "id"
          ]
        },
        "description": "The deletetranscriptbyid action is designed to delete a specific transcript by its id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fireflies_fetch_ai_app_outputs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/ai/app/outputs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "ai",
            "app",
            "outputs"
          ]
        },
        "description": "Fetch outputs for a specific ai app or meeting/transcript.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"limit\": 0,\n  \"app_id\": \"\",\n  \"transcript_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fireflies_get_bite_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/bite/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "bite",
            "by",
            "id"
          ]
        },
        "description": "The getbite action is designed to fetch details associated with a specific bite id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fireflies_get_bites",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/bites",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "bites"
          ]
        },
        "description": "The getbites action is designed to fetch a list of bites against input arguments.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mine\": false,\n  \"skip\": 0,\n  \"limit\": 0,\n  \"my_team\": false,\n  \"transcript_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fireflies_get_transcript_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/transcript/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "transcript",
            "by",
            "id"
          ]
        },
        "description": "The gettranscriptbyid action is designed to fetch details associated with a specific transcript id. note: this action requires a paid fireflies plan to access transcript details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fireflies_get_transcripts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/transcripts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "transcripts"
          ]
        },
        "description": "The gettranscripts action is designed to fetch a list of transcripts against input arguments.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"limit\": 0,\n  \"title\": \"\",\n  \"to_date\": \"\",\n  \"user_id\": \"\",\n  \"from_date\": \"\",\n  \"host_email\": \"\",\n  \"organizer_email\": \"\",\n  \"participant_email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fireflies_get_user_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "by",
            "id"
          ]
        },
        "description": "The getuser action is designed to fetch details associated with a specific user id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fireflies_get_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "users"
          ]
        },
        "description": "The getusers action is designed to fetch a list of all users within the team.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fireflies_upload_audio",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/audio",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "audio"
          ]
        },
        "description": "The uploadaudio action allows you to upload audio files to fireflies.ai for transcription. note: this action requires a paid fireflies plan to upload and transcribe audio files.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"title\": \"\",\n  \"webhook\": \"\",\n  \"attendees\": \"\",\n  \"save_video\": false,\n  \"custom_language\": \"\",\n  \"client_reference_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}