{
  "info": {
    "name": "InfluxDB Cloud — mcp.ai",
    "description": "REST API for the InfluxDB Cloud 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/influxdb_cloud",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "influxdb_cloud_add_dashboard_cell",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/dashboard/cell",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "dashboard",
            "cell"
          ]
        },
        "description": "Tool to add a cell to a dashboard. Use when you want to add or copy a cell to an existing dashboard after verifying the dashboard exists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"h\": 0,\n  \"w\": 0,\n  \"x\": 0,\n  \"y\": 0,\n  \"name\": \"\",\n  \"usingView\": \"\",\n  \"dashboardID\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "influxdb_cloud_delete_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "user"
          ]
        },
        "description": "Delete a user from InfluxDB Cloud by their user ID. This action permanently removes a user from the InfluxDB Cloud organization. Requires an operator token with write:users permission to execute succe",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"userID\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "influxdb_cloud_generate_query_ast",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/query/ast",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "query",
            "ast"
          ]
        },
        "description": "Generates an Abstract Syntax Tree (AST) from a Flux query script. Use this tool to analyze the structure of a Flux query and validate its syntax. The AST shows the parsed structure but does not valida",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\",\n  \"zap_trace_span\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "influxdb_cloud_get_dbrp",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/dbrp",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "dbrp"
          ]
        },
        "description": "Retrieve a Database and Retention Policy (DBRP) mapping by ID from InfluxDB Cloud. DBRP mappings enable InfluxDB 1.x query compatibility by mapping old database/retention policy names to InfluxDB 2.x ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"orgID\": \"\",\n  \"dbrpID\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "influxdb_cloud_list_routes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/routes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "routes"
          ]
        },
        "description": "Lists all available InfluxDB v2 API endpoints and routes. This action queries the root API endpoint (GET /api/v2) to retrieve a comprehensive map of all available API resources and their corresponding",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"zap_trace_span\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "influxdb_cloud_signin",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/signin",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "signin"
          ]
        },
        "description": "Authenticates a user with username and password to create a session with InfluxDB Cloud. Returns a session cookie that can be used for subsequent API requests instead of token-based authentication. Us",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"base_url\": \"\",\n  \"password\": \"\",\n  \"username\": \"\",\n  \"Zap-Trace-Span\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "influxdb_cloud_signout",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/signout",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "signout"
          ]
        },
        "description": "Tool to expire a user session using a session cookie. Use when ending an authenticated session after signin.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cookie\": \"\",\n  \"Zap-Trace-Span\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "influxdb_cloud_update_dbrp",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/dbrp",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "dbrp"
          ]
        },
        "description": "Tool to update a DBRP mapping's default and retention policy. Use when modifying an existing DBRP mapping after initial creation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"orgID\": \"\",\n  \"dbrpID\": \"\",\n  \"default\": false,\n  \"retentionPolicy\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "influxdb_cloud_write_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/write/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "write",
            "data"
          ]
        },
        "description": "Writes time-series data in line protocol format to an InfluxDB Cloud bucket. Use this tool to ingest metrics, sensor data, or any time-series measurements into InfluxDB. The data must be formatted acc",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"org\": \"\",\n  \"data\": \"\",\n  \"orgID\": \"\",\n  \"bucket\": \"\",\n  \"precision\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}