Pulsoid · Capability

Pulsoid API — Geometry Dash

Pulsoid API — Geometry Dash. 2 operations. Lead operation: Get GD mod configuration. Self-contained Naftiko capability covering one Pulsoid business surface.

Run with Naftiko PulsoidGeometry Dash

What You Can Do

GET
Getgdconfig — Get GD mod configuration
/v1/api/v1/geometry-dash-mod/configuration
POST
Updategdconfig — Update GD mod configuration
/v1/api/v1/geometry-dash-mod/configuration

MCP Tools

get-gd-mod-configuration

Get GD mod configuration

read-only idempotent
update-gd-mod-configuration

Update GD mod configuration

Capability Spec

pulsoid-geometry-dash.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Pulsoid API — Geometry Dash
  description: 'Pulsoid API — Geometry Dash. 2 operations. Lead operation: Get GD mod configuration. Self-contained Naftiko
    capability covering one Pulsoid business surface.'
  tags:
  - Pulsoid
  - Geometry Dash
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PULSOID_API_KEY: PULSOID_API_KEY
capability:
  consumes:
  - type: http
    namespace: pulsoid-geometry-dash
    baseUri: https://dev.pulsoid.net
    description: Pulsoid API — Geometry Dash business capability. Self-contained, no shared references.
    resources:
    - name: api-v1-geometry-dash-mod-configuration
      path: /api/v1/geometry-dash-mod/configuration
      operations:
      - name: getgdconfig
        method: GET
        description: Get GD mod configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updategdconfig
        method: POST
        description: Update GD mod configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.PULSOID_API_KEY}}'
  exposes:
  - type: rest
    namespace: pulsoid-geometry-dash-rest
    port: 8080
    description: REST adapter for Pulsoid API — Geometry Dash. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/api/v1/geometry-dash-mod/configuration
      name: api-v1-geometry-dash-mod-configuration
      description: REST surface for api-v1-geometry-dash-mod-configuration.
      operations:
      - method: GET
        name: getgdconfig
        description: Get GD mod configuration
        call: pulsoid-geometry-dash.getgdconfig
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: updategdconfig
        description: Update GD mod configuration
        call: pulsoid-geometry-dash.updategdconfig
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: pulsoid-geometry-dash-mcp
    port: 9090
    transport: http
    description: MCP adapter for Pulsoid API — Geometry Dash. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: get-gd-mod-configuration
      description: Get GD mod configuration
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pulsoid-geometry-dash.getgdconfig
      outputParameters:
      - type: object
        mapping: $.
    - name: update-gd-mod-configuration
      description: Update GD mod configuration
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: pulsoid-geometry-dash.updategdconfig
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.