Yelp · Capability

Yelp Fusion API — Home Services

Yelp Fusion API — Home Services. 3 operations. Lead operation: Get Job Survey. Self-contained Naftiko capability covering one Yelp business surface.

Run with Naftiko YelpHome Services

What You Can Do

GET
Get — Get Job Survey
/v1/v3/home-services/job-survey
POST
Post — Get Jobs
/v1/v3/home-services/jobs
POST
Post — Request a Quote
/v1/v3/home-services/requests-for-quote

MCP Tools

get-job-survey

Get Job Survey

read-only idempotent
get-jobs

Get Jobs

read-only
request-quote

Request a Quote

Capability Spec

yelp-home-services.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Yelp Fusion API — Home Services
  description: 'Yelp Fusion API — Home Services. 3 operations. Lead operation: Get Job Survey. Self-contained Naftiko capability
    covering one Yelp business surface.'
  tags:
  - Yelp
  - Home Services
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    YELP_API_KEY: YELP_API_KEY
capability:
  consumes:
  - type: http
    namespace: yelp-home-services
    baseUri: https://api.yelp.com
    description: Yelp Fusion API — Home Services business capability. Self-contained, no shared references.
    resources:
    - name: v3-home_services-job_survey
      path: /v3/home_services/job_survey
      operations:
      - name: get
        method: GET
        description: Get Job Survey
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v3-home_services-jobs
      path: /v3/home_services/jobs
      operations:
      - name: post
        method: POST
        description: Get Jobs
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v3-home_services-requests_for_quote
      path: /v3/home_services/requests_for_quote
      operations:
      - name: post
        method: POST
        description: Request a Quote
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.YELP_API_KEY}}'
  exposes:
  - type: rest
    namespace: yelp-home-services-rest
    port: 8080
    description: REST adapter for Yelp Fusion API — Home Services. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v3/home-services/job-survey
      name: v3-home-services-job-survey
      description: REST surface for v3-home_services-job_survey.
      operations:
      - method: GET
        name: get
        description: Get Job Survey
        call: yelp-home-services.get
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v3/home-services/jobs
      name: v3-home-services-jobs
      description: REST surface for v3-home_services-jobs.
      operations:
      - method: POST
        name: post
        description: Get Jobs
        call: yelp-home-services.post
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v3/home-services/requests-for-quote
      name: v3-home-services-requests-for-quote
      description: REST surface for v3-home_services-requests_for_quote.
      operations:
      - method: POST
        name: post
        description: Request a Quote
        call: yelp-home-services.post
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: yelp-home-services-mcp
    port: 9090
    transport: http
    description: MCP adapter for Yelp Fusion API — Home Services. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: get-job-survey
      description: Get Job Survey
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: yelp-home-services.get
      outputParameters:
      - type: object
        mapping: $.
    - name: get-jobs
      description: Get Jobs
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: yelp-home-services.post
      outputParameters:
      - type: object
        mapping: $.
    - name: request-quote
      description: Request a Quote
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: yelp-home-services.post
      outputParameters:
      - type: object
        mapping: $.