{
  "info": {
    "name": "Fireworks AI — mcp.ai",
    "description": "REST API for the Fireworks AI 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/fireworks_ai",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "fireworks_ai_create_chat_completion",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/chat/completion",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "chat",
            "completion"
          ]
        },
        "description": "Generate one non-streaming OpenAI-compatible chat completion from role-based messages using a caller-supplied Fireworks model or deployment ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"seed\": 0,\n  \"stop\": \"\",\n  \"model\": \"\",\n  \"tools\": \"\",\n  \"top_p\": 0,\n  \"messages\": \"\",\n  \"max_tokens\": 0,\n  \"temperature\": 0,\n  \"tool_choice\": \"\",\n  \"response_format\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fireworks_ai_create_embeddings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/embeddings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "embeddings"
          ]
        },
        "description": "Create embedding vectors for one or more caller-provided inputs using a caller-supplied Fireworks embedding model.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"input\": \"\",\n  \"model\": \"\",\n  \"normalize\": false,\n  \"dimensions\": 0,\n  \"prompt_template\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fireworks_ai_generate_model_response",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/model/response",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "model",
            "response"
          ]
        },
        "description": "Generate one non-streaming Responses API result, optionally continuing a stored response or using function, MCP, or SSE tools; storage is off by default.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"input\": \"\",\n  \"model\": \"\",\n  \"store\": false,\n  \"tools\": \"\",\n  \"top_p\": 0,\n  \"truncation\": \"\",\n  \"temperature\": 0,\n  \"tool_choice\": \"\",\n  \"instructions\": \"\",\n  \"max_tool_calls\": 0,\n  \"max_output_tokens\": 0,\n  \"previous_response_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fireworks_ai_get_deployment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/deployment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "deployment"
          ]
        },
        "description": "Return configuration and serving status for one Fireworks deployment without scaling or modifying it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"read_mask\": \"\",\n  \"account_id\": \"\",\n  \"deployment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fireworks_ai_get_model",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/model",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "model"
          ]
        },
        "description": "Return metadata and status for one model resource in a Fireworks account; this does not test whether the model can serve inference.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"model_id\": \"\",\n  \"read_mask\": \"\",\n  \"account_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fireworks_ai_list_accounts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "accounts"
          ]
        },
        "description": "Return one page of Fireworks accounts accessible to the API key so an agent can obtain account IDs for model and deployment discovery.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"page_size\": 0,\n  \"read_mask\": \"\",\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fireworks_ai_list_deployments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/deployments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "deployments"
          ]
        },
        "description": "Return one page of deployment resources in a Fireworks account for deployment ID discovery and serving-capacity and status inspection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"order_by\": \"\",\n  \"page_size\": 0,\n  \"read_mask\": \"\",\n  \"account_id\": \"\",\n  \"next_cursor\": \"\",\n  \"show_deleted\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fireworks_ai_list_models",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/models",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "models"
          ]
        },
        "description": "Return one page of model resources in a Fireworks account for model-ID discovery and status inspection; availability for inference is not guaranteed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": \"\",\n  \"order_by\": \"\",\n  \"page_size\": 0,\n  \"read_mask\": \"\",\n  \"account_id\": \"\",\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fireworks_ai_rerank_documents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/rerank/documents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "rerank",
            "documents"
          ]
        },
        "description": "Rank a provided document list by relevance to a query using an optional caller-supplied Fireworks reranker model.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task\": \"\",\n  \"model\": \"\",\n  \"query\": \"\",\n  \"top_n\": 0,\n  \"documents\": \"\",\n  \"return_documents\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}