{
  "info": {
    "name": "Honeyhive — mcp.ai",
    "description": "REST API for the Honeyhive 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/honeyhive",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "honeyhive_add_datapoints_to_dataset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/datapoints/to/dataset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "datapoints",
            "to",
            "dataset"
          ]
        },
        "description": "Tool to add datapoints to a dataset. Use when you need to append multiple entries with specified input, ground truth, and history mappings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": \"\",\n  \"mapping\": {},\n  \"project\": \"\",\n  \"dataset_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_compare_runs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/compare/runs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "compare",
            "runs"
          ]
        },
        "description": "Tool to retrieve experiment comparison between two evaluation runs. Use when you need to analyze the differences in metrics, datapoints, and events between two runs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filters\": \"\",\n  \"new_run_id\": \"\",\n  \"old_run_id\": \"\",\n  \"project_id\": \"\",\n  \"aggregate_function\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_compare_runs_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/compare/runs/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "compare",
            "runs",
            "events"
          ]
        },
        "description": "Tool to compare events between two experiment runs side-by-side. Use when analyzing differences in model behavior, performance metrics, or outputs between evaluation runs. Returns matched event pairs ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"filter\": \"\",\n  \"run_id_1\": \"\",\n  \"run_id_2\": \"\",\n  \"event_name\": \"\",\n  \"event_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_create_batch_datapoints",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/batch/datapoints",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "batch",
            "datapoints"
          ]
        },
        "description": "Tool to create multiple datapoints in a single batch operation. Use when you need to bulk-import events into a dataset or create many datapoints at once. Supports filtering by date range, event IDs, o",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"events\": \"\",\n  \"filters\": \"\",\n  \"mapping\": {},\n  \"dateRange\": {},\n  \"selectAll\": false,\n  \"checkState\": {},\n  \"dataset_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_create_batch_model_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/batch/model/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "batch",
            "model",
            "events"
          ]
        },
        "description": "Tool to create multiple model events in a single request. Use when you need to log a batch of event interactions to HoneyHive.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"model_events\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_create_batch_tool_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/batch/tool/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "batch",
            "tool",
            "events"
          ]
        },
        "description": "Tool to log a batch of external API calls as tool events. Use when you need to record multiple tool events in one request—use after gathering all event data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"events\": \"\",\n  \"is_single_session\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_create_configuration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/configuration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "configuration"
          ]
        },
        "description": "Creates a new configuration in HoneyHive for managing LLM or pipeline settings. Use this to define reusable configurations with specific models, prompts, and parameters that can be deployed across dif",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"env\": \"\",\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"type\": \"\",\n  \"provider\": \"\",\n  \"parameters\": {},\n  \"user_properties\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_create_datapoint",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/datapoint",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "datapoint"
          ]
        },
        "description": "Tool to create a new datapoint with input-output pairs. Use when you need to add a single datapoint with inputs, ground truth, conversation history, and metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"inputs\": {},\n  \"history\": \"\",\n  \"metadata\": {},\n  \"ground_truth\": {},\n  \"linked_event\": \"\",\n  \"linked_datasets\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_create_dataset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/dataset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "dataset"
          ]
        },
        "description": "Tool to create a dataset. Use when you need to initialize a new dataset within a project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"saved\": false,\n  \"project\": \"\",\n  \"metadata\": {},\n  \"datapoints\": \"\",\n  \"description\": \"\",\n  \"linked_evals\": \"\",\n  \"pipeline_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_create_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "event"
          ]
        },
        "description": "Tool to create a new event in HoneyHive to track execution of different parts of your application. Use when you need to log a model call, tool execution, or chain step. Events can be grouped into sess",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"event\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_create_metric",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/metric",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "metric"
          ]
        },
        "description": "Tool to create a new metric in HoneyHive. Use when you need to define how to evaluate model outputs, whether through code (PYTHON), AI evaluation (LLM), human review (HUMAN), or combining multiple met",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"scale\": 0,\n  \"filters\": {},\n  \"criteria\": \"\",\n  \"threshold\": {},\n  \"categories\": \"\",\n  \"model_name\": \"\",\n  \"description\": \"\",\n  \"return_type\": \"\",\n  \"child_metrics\": \"\",\n  \"model_provider\": \"\",\n  \"enabled_in_prod\": false,\n  \"needs_ground_truth\": false,\n  \"sampling_percentage\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_create_model_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/model/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "model",
            "event"
          ]
        },
        "description": "Tool to create a new model event to log LLM call data. Use when you need to track a single model interaction including messages, responses, usage, and metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"model_event\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_create_tool",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/tool",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "tool"
          ]
        },
        "description": "Creates a new tool definition in a HoneyHive project. Use this to register functions or plugins that can be invoked and tracked within HoneyHive. Tools are defined with a JSON Schema for their paramet",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"task\": \"\",\n  \"type\": \"\",\n  \"parameters\": {},\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_delete_datapoint",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/datapoint",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "datapoint"
          ]
        },
        "description": "Tool to delete a specific datapoint by its ID. Use when you need to remove a datapoint from HoneyHive after confirming its identifier.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_delete_dataset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/dataset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "dataset"
          ]
        },
        "description": "Tool to delete a dataset by ID. Use when you need to remove a dataset after confirming its ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dataset_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_end_evaluation_run",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/end/evaluation/run",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "end",
            "evaluation",
            "run"
          ]
        },
        "description": "Tool to update an evaluation run's status and metadata. Use to mark a run as completed after finishing evaluations, or update run properties like name, metadata, configuration, and associated event/da",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"run_id\": \"\",\n  \"status\": \"\",\n  \"metadata\": {},\n  \"event_ids\": \"\",\n  \"dataset_id\": \"\",\n  \"configuration\": {},\n  \"datapoint_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_get_configurations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/configurations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "configurations"
          ]
        },
        "description": "Tool to retrieve a list of configurations. Use when you need to fetch all configurations for a specific project before making changes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"env\": \"\",\n  \"name\": \"\",\n  \"project\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_get_datasets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/datasets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "datasets"
          ]
        },
        "description": "Retrieve datasets from HoneyHive for a specified project. Use this tool when you need to: - List all datasets within a project - Find datasets by type (evaluation or fine-tuning) - Retrieve a specific",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"project\": \"\",\n  \"dataset_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_get_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "events"
          ]
        },
        "description": "Tool to query events with filters and projections from HoneyHive. Use this action when you need to retrieve events with lightweight filtering (limit 1000 results). For bulk exports or more complex que",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"filters\": \"\",\n  \"dateRange\": \"\",\n  \"ignoreOrder\": \"\",\n  \"projections\": \"\",\n  \"evaluationId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_get_events_by_session_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/events/by/session/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "events",
            "by",
            "session",
            "id"
          ]
        },
        "description": "Tool to retrieve the complete tree of nested events for a specific session. Use when you need to analyze all events (model calls, tool calls, chains) that occurred within a session, including their hi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_get_events_chart",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/events/chart",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "events",
            "chart"
          ]
        },
        "description": "Tool to retrieve charting and analytics data for events over time. Use when you need aggregated metrics (duration, cost, token usage) grouped by time buckets or fields. Supports percentile analysis (p",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bucket\": \"\",\n  \"metric\": \"\",\n  \"filters\": \"\",\n  \"group_by\": \"\",\n  \"date_range\": \"\",\n  \"aggregation\": \"\",\n  \"evaluation_id\": \"\",\n  \"only_experiments\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_get_metrics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/metrics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "metrics"
          ]
        },
        "description": "Retrieves all metrics associated with a HoneyHive project. Returns a list of metrics including their configuration (name, type, description, thresholds, evaluator details) and metadata (creation/updat",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_get_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "projects"
          ]
        },
        "description": "Tool to retrieve all projects in the HoneyHive account. Use when you need to list available projects, get project IDs for use in other API calls, or search for a specific project by name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_get_run",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/run",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "run"
          ]
        },
        "description": "Tool to get details of an evaluation run by its UUID. Use when you need to check the status, configuration, results, or metadata of a specific evaluation run.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"run_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_get_run_metrics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/run/metrics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "run",
            "metrics"
          ]
        },
        "description": "Tool to get event metrics for an experiment run. Use when you need to retrieve metrics computed on events within a specific experiment run. Returns an array of event objects with their associated metr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"run_id\": \"\",\n  \"filters\": \"\",\n  \"dateRange\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_get_runs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/runs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "runs"
          ]
        },
        "description": "Tool to retrieve a list of evaluation runs from HoneyHive. Use when you need to: - List all evaluation runs for analysis - Find runs by status, name, or dataset - Get specific runs by their IDs - Pagi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"page\": 0,\n  \"limit\": 0,\n  \"status\": \"\",\n  \"run_ids\": \"\",\n  \"sort_by\": \"\",\n  \"dataset_id\": \"\",\n  \"date_range\": \"\",\n  \"sort_order\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_get_runs_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/runs/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "runs",
            "schema"
          ]
        },
        "description": "Tool to retrieve the schema for experiment runs in HoneyHive. Use when you need to understand available fields, datasets, and mappings for experiment runs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dateRange\": \"\",\n  \"evaluation_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_get_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "session"
          ]
        },
        "description": "Retrieve a complete session tree by session ID from HoneyHive. Use this tool to fetch the full session hierarchy including all nested events (model calls, tool calls, chains) with their inputs, output",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"session_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_list_tools",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tools",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tools"
          ]
        },
        "description": "Tool to list all available Honeyhive tools. Use when you need to discover which functions or plugins are registered for use.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"project\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_retrieve_datapoint",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/datapoint",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "datapoint"
          ]
        },
        "description": "Retrieve a specific datapoint by its ID from HoneyHive. Use this tool when you need the full details of a single datapoint, including its inputs, ground truth, conversation history, linked datasets, a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_retrieve_datapoints",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/datapoints",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "datapoints"
          ]
        },
        "description": "Retrieve datapoints from a HoneyHive project. Use this tool to fetch evaluation datapoints containing inputs, ground truth, and metadata. Supports filtering by specific datapoint IDs or dataset name. ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project\": \"\",\n  \"dataset_name\": \"\",\n  \"datapoint_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_retrieve_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "events"
          ]
        },
        "description": "Retrieve and export events from a HoneyHive project. Use this tool to query traced events (model calls, tool calls, sessions, chains) with optional filters by event_type, metadata, feedback scores, or",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"filters\": \"\",\n  \"project\": \"\",\n  \"dateRange\": {},\n  \"projections\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_retrieve_experiment_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/experiment/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "experiment",
            "result"
          ]
        },
        "description": "Tool to retrieve the result of a specific experiment run. Use when you need the status, metrics, and datapoint-level details of a completed experiment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"run_id\": \"\",\n  \"project_id\": \"\",\n  \"aggregate_function\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_start_evaluation_run",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/start/evaluation/run",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "start",
            "evaluation",
            "run"
          ]
        },
        "description": "Creates a new evaluation run to group and track multiple session events for analysis. Use this action when you want to: - Compare model performance across multiple sessions - Create evaluation batches",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"status\": \"\",\n  \"project\": \"\",\n  \"metadata\": {},\n  \"event_ids\": \"\",\n  \"dataset_id\": \"\",\n  \"configuration\": {},\n  \"datapoint_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_start_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/start/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "start",
            "session"
          ]
        },
        "description": "Start a new HoneyHive session for tracing and observability. Use this tool to initiate a tracking session that groups together related model, tool, and chain events. Returns a session_id that should b",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"session\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_update_configuration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/configuration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "configuration"
          ]
        },
        "description": "Tool to update an existing HoneyHive configuration. Use when you need to modify a configuration's name, provider, model parameters, environments, or other settings. You must provide the configuration ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"env\": \"\",\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"type\": \"\",\n  \"provider\": \"\",\n  \"parameters\": {},\n  \"user_properties\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_update_datapoint",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/datapoint",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "datapoint"
          ]
        },
        "description": "Update an existing datapoint by ID. Use this to modify any combination of inputs, ground_truth, history, metadata, linked_datasets, or linked_evals for a datapoint. Requires a valid datapoint ID obtai",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"inputs\": {},\n  \"history\": \"\",\n  \"metadata\": {},\n  \"ground_truth\": {},\n  \"linked_evals\": \"\",\n  \"linked_datasets\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_update_dataset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/dataset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "dataset"
          ]
        },
        "description": "Tool to update an existing dataset. Use when you need to modify a dataset's details (name, description, datapoints, linked evaluations, or metadata) after confirming its ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"metadata\": {},\n  \"datapoints\": \"\",\n  \"dataset_id\": \"\",\n  \"description\": \"\",\n  \"linked_evals\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_update_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "event"
          ]
        },
        "description": "Update an existing HoneyHive event by ID. Use to attach feedback, metrics, metadata, outputs, config, user properties, or update duration on events created via start_session or batch event creation. A",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"config\": {},\n  \"metrics\": {},\n  \"outputs\": {},\n  \"duration\": 0,\n  \"event_id\": \"\",\n  \"feedback\": {},\n  \"metadata\": {},\n  \"user_properties\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_update_metric",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/metric",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "metric"
          ]
        },
        "description": "Tool to update an existing metric. Use when you need to modify a metric’s properties after creation. Ensure you retrieve the metric first to verify its current state.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"prompt\": \"\",\n  \"criteria\": \"\",\n  \"metric_id\": \"\",\n  \"pass_when\": false,\n  \"threshold\": {},\n  \"event_name\": \"\",\n  \"event_type\": \"\",\n  \"description\": \"\",\n  \"return_type\": \"\",\n  \"code_snippet\": \"\",\n  \"enabled_in_prod\": false,\n  \"needs_ground_truth\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_update_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "project"
          ]
        },
        "description": "Updates an existing HoneyHive project's name or description. Use this action to modify project metadata after creation. You must provide the project_id and at least one field to update (name or descri",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"project_id\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeyhive_update_tool",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/tool",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "tool"
          ]
        },
        "description": "Tool to update an existing tool in HoneyHive. Use when you need to modify a tool's name, description, parameters, or type after confirming its ID. At least one optional field must be provided alongsid",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"name\": \"\",\n  \"tool_type\": \"\",\n  \"parameters\": {},\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}