{
  "info": {
    "name": "GroqCloud — mcp.ai",
    "description": "REST API for the GroqCloud 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/groqcloud",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "groqcloud_create_audio_transcription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/audio/transcription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "audio",
            "transcription"
          ]
        },
        "description": "Tool to transcribe audio into text in the same language as the audio. Use when you need to convert speech to text while preserving the original language. Supports multiple formats including mp3, mp4, ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"model\": \"\",\n  \"prompt\": \"\",\n  \"language\": \"\",\n  \"temperature\": 0,\n  \"response_format\": \"\",\n  \"timestamp_granularities\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "groqcloud_create_response",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/response",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "response"
          ]
        },
        "description": "Tool to create a model response for the given input. Beta endpoint with simplified interface compared to chat completions. Use when you need a streamlined API for generating model responses.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": {},\n  \"user\": \"\",\n  \"input\": \"\",\n  \"model\": \"\",\n  \"store\": false,\n  \"tools\": \"\",\n  \"top_p\": 0,\n  \"stream\": false,\n  \"metadata\": {},\n  \"reasoning\": {},\n  \"truncation\": \"\",\n  \"temperature\": 0,\n  \"tool_choice\": \"\",\n  \"instructions\": \"\",\n  \"service_tier\": \"\",\n  \"max_output_tokens\": 0,\n  \"parallel_tool_calls\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "groqcloud_groq_create_audio_translation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/groq/create/audio/translation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "groq",
            "create",
            "audio",
            "translation"
          ]
        },
        "description": "Tool to translate an audio file into English text. Use when you have a non-English recording and need an accurate English transcript. Use after confirming the file path.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"model\": \"\",\n  \"prompt\": \"\",\n  \"temperature\": 0,\n  \"response_format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "groqcloud_groq_create_chat_completion",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/groq/create/chat/completion",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "groq",
            "create",
            "chat",
            "completion"
          ]
        },
        "description": "Tool to generate a chat-based completion for a conversation. Use when you have a list of prior messages and need the model's next reply. Response completion text is at choices[0].message.content in th",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"n\": 0,\n  \"stop\": \"\",\n  \"user\": \"\",\n  \"model\": \"\",\n  \"top_p\": 0,\n  \"messages\": \"\",\n  \"temperature\": 0,\n  \"max_completion_tokens\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "groqcloud_groq_retrieve_model",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/groq/retrieve/model",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "groq",
            "retrieve",
            "model"
          ]
        },
        "description": "Tool to retrieve detailed information about a specific model. Use after listing models when you need metadata for a chosen model. Returned metadata may change as models update; do not cache.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"model\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "groqcloud_list_models",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/models",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "models"
          ]
        },
        "description": "Tool to list all available models and their metadata. Always call this to retrieve current model IDs rather than using hard-coded or cached identifiers, as deprecated names cause failures in GROQCLOUD",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "groqcloud_list_voices",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/voices",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "voices"
          ]
        },
        "description": "Tool to retrieve available TTS voices for Groq PlayAI models. Use when you need to discover voice options before calling text-to-speech. Note: static list maintained manually; no live endpoint exists.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}