{
  "info": {
    "name": "Honeybadger — mcp.ai",
    "description": "REST API for the Honeybadger 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/honeybadger",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "honeybadger_report_check_in",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/report/check/in",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "report",
            "check",
            "in"
          ]
        },
        "description": "Reports a check-in (ping) to Honeybadger for uptime monitoring. Check-ins are used to monitor scheduled tasks, cron jobs, and background processes. By pinging this endpoint regularly, you signal that ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"slug\": \"\",\n  \"project_api_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeybadger_report_check_in_with_payload",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/report/check/in/with/payload",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "report",
            "check",
            "in",
            "with",
            "payload"
          ]
        },
        "description": "Report a check-in with additional payload data to Honeybadger. Use when monitoring scheduled tasks or cron jobs and need to send metrics, status, or metadata (up to 20KB).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"check_in\": {},\n  \"check_in_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeybadger_report_deployment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/report/deployment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "report",
            "deployment"
          ]
        },
        "description": "Report a new deployment to Honeybadger for deployment tracking and error correlation. Use this tool after deploying code to notify Honeybadger, which allows you to: - Track deployment history on your ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"deploy\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeybadger_report_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/report/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "report",
            "event"
          ]
        },
        "description": "Send custom events to Honeybadger Insights for tracking, monitoring, and analytics. Use this action to record any structured event data such as: - User activity and behavioral events (logins, page vie",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"events\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeybadger_report_exception",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/report/exception",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "report",
            "exception"
          ]
        },
        "description": "Tool to report an exception notice to Honeybadger. Use when sending error details (stack trace, context) for diagnostics.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"error\": {},\n  \"server\": {},\n  \"request\": {},\n  \"notifier\": {},\n  \"breadcrumbs\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeybadger_upload_file_to_s3",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/file/to/s3",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "file",
            "to",
            "s3"
          ]
        },
        "description": "Tool to upload a local file to a managed S3 bucket. Use when preparing files for source-map uploads.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"desired_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "honeybadger_upload_source_map",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/source/map",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "source",
            "map"
          ]
        },
        "description": "Upload JavaScript source maps to Honeybadger for error stack trace de-minification. Use this tool after deploying minified JavaScript assets to enable Honeybadger to display un-minified, readable stac",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"revision\": \"\",\n  \"source_map\": {},\n  \"minified_url\": \"\",\n  \"minified_file\": {},\n  \"additional_source_files\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}