{
  "info": {
    "name": "Chatfai — mcp.ai",
    "description": "REST API for the Chatfai 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/chatfai",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "chatfai_get_public_character_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/public/character/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "public",
            "character",
            "by",
            "id"
          ]
        },
        "description": "Tool to retrieve a public character by its ID. Use when you need to fetch details of a single public character by providing its unique ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "chatfai_list_chatfai_conversations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/chatfai/conversations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "chatfai",
            "conversations"
          ]
        },
        "description": "Tool to list conversations for the authenticated user. Use when you need to retrieve the user's chat conversations or verify authentication status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "chatfai_search_characters",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/characters",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "characters"
          ]
        },
        "description": "Tool to search for public characters on ChatFAI by name or keyword. Use when you need to find characters matching a specific search query.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}