Jobber · Capability

Jobber Developer API — GraphQL

Jobber Developer API GraphQL endpoint. 1 operation. Lead operation: Execute GraphQL Query Or Mutation. Self-contained Naftiko capability covering the Jobber GraphQL business surface.

Jobber Developer API — GraphQL is a Naftiko capability published by Jobber on the APIs.io network. It bundles 1 operation across the POST method rooted at /v1/api/graphql.

The capability includes 1 state-changing operation. Lead operation: Execute A Jobber GraphQL Query Or Mutation. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Jobber, GraphQL, and Field Service.

Run with Naftiko JobberGraphQLField Service

What You Can Do

POST
Executegraphqlquery — Execute A Jobber GraphQL Query Or Mutation
/v1/api/graphql

MCP Tools

jobber-execute-graphql

Execute A Jobber GraphQL Query Or Mutation

Capability Spec

developer-api-graphql.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Jobber Developer API — GraphQL
  description: 'Jobber Developer API GraphQL endpoint. 1 operation. Lead operation: Execute GraphQL Query Or Mutation. Self-contained Naftiko capability covering the Jobber GraphQL business surface.'
  tags:
  - Jobber
  - GraphQL
  - Field Service
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    JOBBER_ACCESS_TOKEN: JOBBER_ACCESS_TOKEN
    JOBBER_API_VERSION: JOBBER_API_VERSION
capability:
  consumes:
  - type: http
    namespace: developer-api-graphql
    baseUri: https://api.getjobber.com
    description: Jobber Developer API GraphQL business capability. Self-contained, no shared references.
    resources:
    - name: api-graphql
      path: /api/graphql
      operations:
      - name: executeGraphQLQuery
        method: POST
        description: Execute A Jobber GraphQL Query Or Mutation
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: GraphQL request body with query, variables, and operationName.
          required: true
        - name: X-JOBBER-GRAPHQL-VERSION
          in: header
          type: string
          description: Date-based API version (e.g. 2025-04-16).
          required: false
    authentication:
      type: bearer
      value: '{{env.JOBBER_ACCESS_TOKEN}}'
      placement: header
  exposes:
  - type: rest
    namespace: developer-api-graphql-rest
    port: 8080
    description: REST adapter for Jobber Developer API GraphQL. One Spectral-compliant resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/api/graphql
      name: api-graphql
      description: REST surface for the Jobber GraphQL endpoint.
      operations:
      - method: POST
        name: executeGraphQLQuery
        description: Execute A Jobber GraphQL Query Or Mutation
        call: developer-api-graphql.executeGraphQLQuery
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: developer-api-graphql-mcp
    port: 9090
    transport: http
    description: MCP adapter for Jobber Developer API GraphQL. One tool per consumed operation, routed inline through this capability's consumes block.
    tools:
    - name: jobber-execute-graphql
      description: Execute A Jobber GraphQL Query Or Mutation
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: developer-api-graphql.executeGraphQLQuery
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.