{
  "info": {
    "name": "DeepSeek — mcp.ai",
    "description": "REST API for the DeepSeek 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/deepseek",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "deepseek_create_anthropic_message",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/anthropic/message",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "anthropic",
            "message"
          ]
        },
        "description": "Tool to create a model response using DeepSeek's Anthropic-compatible API format with support for system prompts, tool calling, streaming, and thinking mode. Use when you need to generate chat complet",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"model\": \"\",\n  \"tools\": \"\",\n  \"top_p\": 0,\n  \"stream\": false,\n  \"system\": \"\",\n  \"messages\": \"\",\n  \"thinking\": {},\n  \"max_tokens\": 0,\n  \"temperature\": 0,\n  \"tool_choice\": \"\",\n  \"stop_sequences\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "deepseek_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": "Tool to create a chat completion using DeepSeek models (deepseek-chat or deepseek-reasoner). Use when you need to generate AI responses to chat conversations. Supports streaming, tool/function calling",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"stop\": \"\",\n  \"model\": \"\",\n  \"tools\": \"\",\n  \"top_p\": 0,\n  \"stream\": false,\n  \"logprobs\": false,\n  \"messages\": \"\",\n  \"thinking\": {},\n  \"max_tokens\": 0,\n  \"temperature\": 0,\n  \"tool_choice\": \"\",\n  \"top_logprobs\": 0,\n  \"stream_options\": {},\n  \"response_format\": {},\n  \"presence_penalty\": 0,\n  \"frequency_penalty\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "deepseek_get_user_balance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/balance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "balance"
          ]
        },
        "description": "Tool to get user's current account balance including granted and topped-up balances with detailed breakdown by currency (CNY or USD). Use when you need to check if the user has sufficient balance for ",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "deepseek_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 currently available DeepSeek models and provides basic information about each one such as the owner and availability. Use when you need to discover which models are available for API call",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}