FullStory · Capability

FullStory Server API — Events

FullStory Server API — Events. 1 operations. Lead operation: Create a single event. Self-contained Naftiko capability covering one Fullstory business surface.

Run with Naftiko FullstoryEvents

What You Can Do

POST
Createevent — Create a single event
/v1/v2/events

MCP Tools

create-single-event

Create a single event

Capability Spec

server-events.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: FullStory Server API — Events
  description: 'FullStory Server API — Events. 1 operations. Lead operation: Create a single event. Self-contained Naftiko
    capability covering one Fullstory business surface.'
  tags:
  - Fullstory
  - Events
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FULLSTORY_API_KEY: FULLSTORY_API_KEY
capability:
  consumes:
  - type: http
    namespace: server-events
    baseUri: https://api.fullstory.com
    description: FullStory Server API — Events business capability. Self-contained, no shared references.
    resources:
    - name: v2-events
      path: /v2/events
      operations:
      - name: createevent
        method: POST
        description: Create a single event
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: basic
      username: '{{env.FULLSTORY_USER}}'
      password: '{{env.FULLSTORY_PASS}}'
  exposes:
  - type: rest
    namespace: server-events-rest
    port: 8080
    description: REST adapter for FullStory Server API — Events. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/v2/events
      name: v2-events
      description: REST surface for v2-events.
      operations:
      - method: POST
        name: createevent
        description: Create a single event
        call: server-events.createevent
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: server-events-mcp
    port: 9090
    transport: http
    description: MCP adapter for FullStory Server API — Events. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: create-single-event
      description: Create a single event
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: server-events.createevent
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.