OpenObserve MCP API

The MCP API from OpenObserve — 2 operation(s) for mcp.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/openobserve-mcp-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

openobserve-mcp-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: openobserve Actions MCP API
  description: OpenObserve API documents [https://openobserve.ai/docs/](https://openobserve.ai/docs/)
  contact:
    name: OpenObserve
    url: https://openobserve.ai/
    email: hello@zinclabs.io
  license:
    name: AGPL-3.0
    identifier: AGPL-3.0
  version: 0.90.0
tags:
- name: MCP
paths:
  /.well-known/oauth-authorization-server:
    post:
      tags:
      - MCP
      summary: 'Handler for OAuth 2.0 Authorization Server Metadata (Enterprise)

        RFC 8414: https://datatracker.ietf.org/doc/html/rfc8414

        This endpoint provides discovery information for OAuth clients

        Must be publicly accessible (no auth) per OAuth spec'
      operationId: OAuthServerMetadata
      responses:
        '200':
          description: Success
          content:
            application/json: {}
      x-o2-mcp:
        enabled: false
  /api/{org_id}/mcp:
    post:
      tags:
      - MCP
      summary: Handler for MCP POST requests (single request/response)
      description: 'Per MCP 2025-11-25 (Streamable HTTP transport):

        - Requests with `id` → 200 with JSON or SSE response

        - Notifications (no `id`) → 202 Accepted, no body

        - Validates `MCP-Protocol-Version` header on non-initialize requests'
      operationId: MCPRequest
      parameters:
      - name: org_id
        in: path
        description: Organization name
        required: true
        schema:
          type: string
      requestBody:
        description: MCP request payload
        content:
          application/json:
            schema:
              type: object
              required:
              - jsonrpc
              - method
              properties:
                id: {}
                jsonrpc:
                  type: string
                method:
                  type: string
                params: {}
        required: true
      responses:
        '200':
          description: Success
          content:
            application/json: {}
        '202':
          description: Accepted (notification, no response body)
        '400':
          description: Bad Request (unsupported protocol version)
        '500':
          description: Internal Server Error
      security:
      - Authorization: []
      x-o2-ratelimit:
        module: mcp
        operation: post
      x-o2-mcp:
        enabled: false
components:
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      name: Authorization
    BasicAuth:
      type: http
      scheme: basic