Apache EventMesh · Capability

Apache EventMesh Admin API — Event

Apache EventMesh Admin API — Event. 2 operations. Lead operation: Apache EventMesh Publish CloudEvent via HTTP. Self-contained Naftiko capability covering one Apache Event Mesh business surface.

Run with Naftiko Apache Event MeshEvent

What You Can Do

POST
Publishevent — Apache EventMesh Publish CloudEvent via HTTP
/v1/event/publish
POST
Requestevent — Apache EventMesh Request-reply Event via HTTP
/v1/event/request

MCP Tools

apache-eventmesh-publish-cloudevent-http

Apache EventMesh Publish CloudEvent via HTTP

apache-eventmesh-request-reply-event

Apache EventMesh Request-reply Event via HTTP

Capability Spec

eventmesh-admin-event.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apache EventMesh Admin API — Event
  description: 'Apache EventMesh Admin API — Event. 2 operations. Lead operation: Apache EventMesh Publish CloudEvent via
    HTTP. Self-contained Naftiko capability covering one Apache Event Mesh business surface.'
  tags:
  - Apache Event Mesh
  - Event
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APACHE_EVENT_MESH_API_KEY: APACHE_EVENT_MESH_API_KEY
capability:
  consumes:
  - type: http
    namespace: eventmesh-admin-event
    baseUri: http://localhost:10106
    description: Apache EventMesh Admin API — Event business capability. Self-contained, no shared references.
    resources:
    - name: event-publish
      path: /event/publish
      operations:
      - name: publishevent
        method: POST
        description: Apache EventMesh Publish CloudEvent via HTTP
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: event-request
      path: /event/request
      operations:
      - name: requestevent
        method: POST
        description: Apache EventMesh Request-reply Event via HTTP
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
  exposes:
  - type: rest
    namespace: eventmesh-admin-event-rest
    port: 8080
    description: REST adapter for Apache EventMesh Admin API — Event. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/event/publish
      name: event-publish
      description: REST surface for event-publish.
      operations:
      - method: POST
        name: publishevent
        description: Apache EventMesh Publish CloudEvent via HTTP
        call: eventmesh-admin-event.publishevent
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/event/request
      name: event-request
      description: REST surface for event-request.
      operations:
      - method: POST
        name: requestevent
        description: Apache EventMesh Request-reply Event via HTTP
        call: eventmesh-admin-event.requestevent
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: eventmesh-admin-event-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apache EventMesh Admin API — Event. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: apache-eventmesh-publish-cloudevent-http
      description: Apache EventMesh Publish CloudEvent via HTTP
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: eventmesh-admin-event.publishevent
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: apache-eventmesh-request-reply-event
      description: Apache EventMesh Request-reply Event via HTTP
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: eventmesh-admin-event.requestevent
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.