{
  "info": {
    "name": "Keen.io — mcp.ai",
    "description": "REST API for the Keen.io 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/keen_io",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "keen_io_inspect_all_event_collections",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/inspect/all/event/collections",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "inspect",
            "all",
            "event",
            "collections"
          ]
        },
        "description": "Retrieve schema information for all event collections in a Keen.io project. Use this tool to: - List all event collection names in a project - Discover the schema (property names and types) for each c",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"include_schema\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keen_io_inspect_collection_property",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/inspect/collection/property",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "inspect",
            "collection",
            "property"
          ]
        },
        "description": "Tool to return details for a specific property in an event collection. Use when you need to inspect a property's inferred type and resource URL.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"property_name\": \"\",\n  \"event_collection\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keen_io_inspect_single_event_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/inspect/single/event/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "inspect",
            "single",
            "event",
            "collection"
          ]
        },
        "description": "Retrieve schema information for a single Keen.io event collection. Returns the inferred property types for all fields in the specified collection, useful for understanding data structure before runnin",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"event_collection\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keen_io_list_cached_datasets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/cached/datasets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "cached",
            "datasets"
          ]
        },
        "description": "List all cached dataset definitions for a Keen.io project. Returns paginated results of pre-computed dataset definitions including their query configuration, status, and timing information. Use limit ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"after_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keen_io_select_unique",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/select/unique",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "select",
            "unique"
          ]
        },
        "description": "Tool to return unique values for a target property. Use when distinct property values are required for matching events with optional filters and timeframe constraints.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filters\": \"\",\n  \"group_by\": \"\",\n  \"interval\": \"\",\n  \"timezone\": \"\",\n  \"timeframe\": \"\",\n  \"target_property\": \"\",\n  \"event_collection\": \"\",\n  \"include_metadata\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "keen_io_unrevoke_access_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unrevoke/access/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unrevoke",
            "access",
            "key"
          ]
        },
        "description": "Reactivate a previously revoked Keen.io access key. Use this tool when you need to restore access for a key that was previously revoked but not deleted. A revoked key has its 'active' flag set to fals",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}