{
  "info": {
    "name": "SeekTable — mcp.ai",
    "description": "REST API for the SeekTable 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/seek_table",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "seek_table_export_report",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/export/report",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "export",
            "report"
          ]
        },
        "description": "Export a saved SeekTable report in a selected file or data format. This performs one read-only provider request and requires a report ID returned by List Reports.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"format\": \"\",\n  \"row_mode\": \"\",\n  \"report_id\": \"\",\n  \"chart_only\": false,\n  \"value_formatting\": false,\n  \"html_inline_style\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "seek_table_get_cube",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cube",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cube"
          ]
        },
        "description": "Get metadata for one SeekTable cube by its ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cube_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "seek_table_get_report",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/report",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "report"
          ]
        },
        "description": "Get metadata and serialized configuration for one saved SeekTable report.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"report_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "seek_table_list_cubes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/cubes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "cubes"
          ]
        },
        "description": "List cubes in the connected SeekTable account, optionally filtering by provider source type.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"source_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "seek_table_list_reports",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/reports",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "reports"
          ]
        },
        "description": "List saved reports in the connected SeekTable account, including IDs needed by report detail and export tools.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}