> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getmcpulse.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Demo Events

> A page of individual calls on the demo server. Capped and forward-only: this is a sample of what the events view looks like, not an export.



## OpenAPI

````yaml https://api.getmcpulse.com/docs/openapi.json get /v1/demo/events
openapi: 3.1.0
info:
  title: MCPulse API
  version: 1.0.0
  description: >-
    Analytics for MCP servers.


    The API is the product — the dashboard is one client and an MCP server will
    be another. Every number here is computed server-side so that both get the
    same answer.


    **Two kinds of auth.** Ingest uses an MCP API key (`mp_live_…`). Everything
    else uses a Supabase access token from the browser session.
servers:
  - url: https://api.getmcpulse.com
    description: MCPulse API
security: []
tags:
  - name: ingest
    description: What the customer's server sends
  - name: mcps
    description: MCPs and ownership
  - name: metrics
    description: Everything the dashboard reads
  - name: keys
    description: Ingest API keys
  - name: account
    description: Account, team and usage
paths:
  /v1/demo/events:
    get:
      tags:
        - demo
      summary: List Demo Events
      description: >-
        A page of individual calls on the demo server. Capped and forward-only:
        this is a sample of what the events view looks like, not an export.
      parameters:
        - schema:
            type: integer
            minimum: 0
            exclusiveMinimum: true
          required: false
          name: before
          in: query
        - schema:
            type: string
          required: false
          name: tool
          in: query
        - schema:
            type: string
          required: false
          name: client
          in: query
        - schema:
            type: string
            enum:
              - ok
              - empty
              - bad_args
              - tool_error
              - crashed
          required: false
          name: outcome
          in: query
      responses:
        '200':
          description: The demo MCP's data
          content:
            application/json:
              schema:
                nullable: true
        '404':
          description: No demo is configured on this deployment

````