{
  "info": {
    "name": "Hive — mcp.ai",
    "description": "REST API for the Hive 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/hive",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "hive_create_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "action"
          ]
        },
        "description": "Create a Hive action (task) in a workspace, optionally inside a project and assigned to users.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"project_id\": \"\",\n  \"description\": \"\",\n  \"assignee_ids\": \"\",\n  \"workspace_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hive_create_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "label"
          ]
        },
        "description": "Create a color-coded label in a Hive workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"color\": \"\",\n  \"workspace_id\": \"\",\n  \"parent_label_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hive_delete_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "action"
          ]
        },
        "description": "Soft-delete one Hive action by ID. Hive preserves soft-delete semantics; this tool does not permanently erase the action. Deleting an action that is already gone succeeds rather than failing.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"action_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hive_delete_label",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/label",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "label"
          ]
        },
        "description": "Delete one label from a Hive workspace. Deleting a label that is already gone succeeds rather than failing.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"label_id\": \"\",\n  \"workspace_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hive_get_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "action"
          ]
        },
        "description": "Get the current details of one Hive action by ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"action_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hive_list_actions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/actions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "actions"
          ]
        },
        "description": "List Hive actions in a workspace, optionally narrowed by project, status, dates, hierarchy, or archive state.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"first\": 0,\n  \"status\": \"\",\n  \"deleted\": false,\n  \"sort_by\": \"\",\n  \"archived\": false,\n  \"end_date\": \"\",\n  \"project_id\": \"\",\n  \"start_date\": \"\",\n  \"next_cursor\": \"\",\n  \"workspace_id\": \"\",\n  \"parent_action_id\": \"\",\n  \"include_total_count\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hive_list_labels",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/labels",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "labels"
          ]
        },
        "description": "List labels configured in a Hive workspace and return label IDs usable in action search.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"first\": 0,\n  \"sort_by\": \"\",\n  \"next_cursor\": \"\",\n  \"workspace_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hive_list_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "projects"
          ]
        },
        "description": "List projects in a Hive workspace, with optional archive and parent-project filters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"first\": 0,\n  \"sort_by\": \"\",\n  \"archived\": false,\n  \"next_cursor\": \"\",\n  \"workspace_id\": \"\",\n  \"parent_project_id\": \"\",\n  \"include_total_count\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hive_list_workspaces",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/workspaces",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "workspaces"
          ]
        },
        "description": "List Hive workspaces accessible to the connected API key and return IDs needed by workspace-scoped tools.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"first\": 0,\n  \"next_cursor\": \"\",\n  \"include_total_count\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hive_search_actions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/actions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "actions"
          ]
        },
        "description": "Search action titles in a Hive workspace and return one offset-based result page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"limit\": 0,\n  \"status\": \"\",\n  \"sort_by\": \"\",\n  \"archived\": false,\n  \"end_date\": \"\",\n  \"label_id\": \"\",\n  \"project_id\": \"\",\n  \"start_date\": \"\",\n  \"assignee_id\": \"\",\n  \"search_term\": \"\",\n  \"workspace_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}