{
  "info": {
    "name": "Exist — mcp.ai",
    "description": "REST API for the Exist 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/exist",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "exist_exist_get_user_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/exist/get/user/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "exist",
            "get",
            "user",
            "profile"
          ]
        },
        "description": "Tool to retrieve the authenticated user's profile details and preferences. use after authentication to inspect account settings and status.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "exist_exist_o_auth2_authorize",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/exist/o/auth2/authorize",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "exist",
            "o",
            "auth2",
            "authorize"
          ]
        },
        "description": "Tool to initiate the oauth2 authorization flow for user consent. use when you need an authorization code before exchanging for an access token.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"scope\": \"\",\n  \"state\": \"\",\n  \"client_id\": \"\",\n  \"redirect_uri\": \"\",\n  \"response_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "exist_exist_oauth2_authorize",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/exist/oauth2/authorize",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "exist",
            "oauth2",
            "authorize"
          ]
        },
        "description": "Tool to initiate the oauth2 authorization flow for user consent. use when you need to obtain an authorization code before exchanging for an access token.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"scope\": \"\",\n  \"state\": \"\",\n  \"client_id\": \"\",\n  \"redirect_uri\": \"\",\n  \"response_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "exist_get_attribute_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/attribute/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "attribute",
            "templates"
          ]
        },
        "description": "Tool to retrieve a paged list of supported attribute templates. use when you need to browse available templates before creating or updating data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"groups\": \"\",\n  \"include_low_priority\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "exist_get_correlations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/correlations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "correlations"
          ]
        },
        "description": "Tool to retrieve a paginated list of recent correlations. use when exploring relationships between your tracked attributes, optionally filtering by strength or attribute.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"strong\": false,\n  \"attribute\": \"\",\n  \"confident\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "exist_get_user_attributes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/attributes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "attributes"
          ]
        },
        "description": "Tool to retrieve a paged list of the user's attributes without values. use when you need metadata on available attributes for filtering or selection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"owned\": false,\n  \"groups\": \"\",\n  \"manual\": false,\n  \"attributes\": \"\",\n  \"exclude_custom\": false,\n  \"include_inactive\": false,\n  \"include_low_priority\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "exist_get_user_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "profile"
          ]
        },
        "description": "Tool to retrieve the authenticated user's profile details and preferences. use after authentication to inspect account settings and status.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}