{
  "info": {
    "name": "Anthropic Administrator — mcp.ai",
    "description": "REST API for the Anthropic Administrator 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/anthropic_administrator",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "anthropic_administrator_create_message",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/message",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "message"
          ]
        },
        "description": "Create a message completion from Claude. Send a conversation history with user/assistant messages and receive Claude's response. Useful for: chatbots, Q&A systems, text generation, conversational AI, ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"model\": \"\",\n  \"top_k\": 0,\n  \"top_p\": 0,\n  \"system\": \"\",\n  \"messages\": \"\",\n  \"metadata\": {},\n  \"max_tokens\": 0,\n  \"temperature\": 0,\n  \"stop_sequences\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "anthropic_administrator_get_model",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/model",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "model"
          ]
        },
        "description": "Tool to retrieve details of a specific model by its ID. Use after confirming the model ID is valid.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"model_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "anthropic_administrator_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 available models. Use when you need to see which models are available before selection. Always source model IDs from this tool rather than hard-coding them; stale or outdated model IDs pa",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"after_id\": \"\",\n  \"before_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}