taylor-morrison-home · Capability

Taylor Morrison Home Search API — Homes

Taylor Morrison Home Search API — Homes. 2 operations. Lead operation: List Available Homes. Self-contained Naftiko capability covering one Taylor Morrison Home business surface.

Run with Naftiko Taylor Morrison HomeHomes

What You Can Do

GET
Listhomes — List Available Homes
/v1/homes
GET
Gethome — Get Home Details
/v1/homes/{home-id}

MCP Tools

list-available-homes

List Available Homes

read-only idempotent
get-home-details

Get Home Details

read-only idempotent

Capability Spec

search-homes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Taylor Morrison Home Search API — Homes
  description: 'Taylor Morrison Home Search API — Homes. 2 operations. Lead operation: List Available Homes. Self-contained
    Naftiko capability covering one Taylor Morrison Home business surface.'
  tags:
  - Taylor Morrison Home
  - Homes
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TAYLOR_MORRISON_HOME_API_KEY: TAYLOR_MORRISON_HOME_API_KEY
capability:
  consumes:
  - type: http
    namespace: search-homes
    baseUri: https://www.taylormorrison.com/api
    description: Taylor Morrison Home Search API — Homes business capability. Self-contained, no shared references.
    resources:
    - name: homes
      path: /homes
      operations:
      - name: listhomes
        method: GET
        description: List Available Homes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: community_id
          in: query
          type: string
          description: Filter by community
        - name: status
          in: query
          type: string
          description: Home availability status
        - name: bedrooms
          in: query
          type: integer
          description: Number of bedrooms
        - name: bathrooms
          in: query
          type: number
          description: Number of bathrooms
        - name: price_min
          in: query
          type: integer
          description: Minimum price
        - name: price_max
          in: query
          type: integer
          description: Maximum price
        - name: sqft_min
          in: query
          type: integer
          description: Minimum square footage
        - name: limit
          in: query
          type: integer
          description: Maximum homes to return
        - name: offset
          in: query
          type: integer
          description: Pagination offset
    - name: homes-home_id
      path: /homes/{home_id}
      operations:
      - name: gethome
        method: GET
        description: Get Home Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: home_id
          in: path
          type: string
          description: Home identifier
          required: true
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.TAYLOR_MORRISON_HOME_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: search-homes-rest
    port: 8080
    description: REST adapter for Taylor Morrison Home Search API — Homes. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/homes
      name: homes
      description: REST surface for homes.
      operations:
      - method: GET
        name: listhomes
        description: List Available Homes
        call: search-homes.listhomes
        with:
          community_id: rest.community_id
          status: rest.status
          bedrooms: rest.bedrooms
          bathrooms: rest.bathrooms
          price_min: rest.price_min
          price_max: rest.price_max
          sqft_min: rest.sqft_min
          limit: rest.limit
          offset: rest.offset
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/homes/{home-id}
      name: homes-home-id
      description: REST surface for homes-home_id.
      operations:
      - method: GET
        name: gethome
        description: Get Home Details
        call: search-homes.gethome
        with:
          home_id: rest.home_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: search-homes-mcp
    port: 9090
    transport: http
    description: MCP adapter for Taylor Morrison Home Search API — Homes. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-available-homes
      description: List Available Homes
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: search-homes.listhomes
      with:
        community_id: tools.community_id
        status: tools.status
        bedrooms: tools.bedrooms
        bathrooms: tools.bathrooms
        price_min: tools.price_min
        price_max: tools.price_max
        sqft_min: tools.sqft_min
        limit: tools.limit
        offset: tools.offset
      outputParameters:
      - type: object
        mapping: $.
    - name: get-home-details
      description: Get Home Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: search-homes.gethome
      with:
        home_id: tools.home_id
      outputParameters:
      - type: object
        mapping: $.