taylor-morrison-home · Capability

Taylor Morrison Home Search API — Communities

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

Run with Naftiko Taylor Morrison HomeCommunities

What You Can Do

GET
Listcommunities — List Communities
/v1/communities
GET
Getcommunity — Get Community
/v1/communities/{community-id}

MCP Tools

list-communities

List Communities

read-only idempotent
get-community

Get Community

read-only idempotent

Capability Spec

search-communities.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Taylor Morrison Home Search API — Communities
  description: 'Taylor Morrison Home Search API — Communities. 2 operations. Lead operation: List Communities. Self-contained
    Naftiko capability covering one Taylor Morrison Home business surface.'
  tags:
  - Taylor Morrison Home
  - Communities
  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-communities
    baseUri: https://www.taylormorrison.com/api
    description: Taylor Morrison Home Search API — Communities business capability. Self-contained, no shared references.
    resources:
    - name: communities
      path: /communities
      operations:
      - name: listcommunities
        method: GET
        description: List Communities
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: state
          in: query
          type: string
          description: Two-letter state code filter
        - name: city
          in: query
          type: string
          description: City name filter
        - name: metro
          in: query
          type: string
          description: Metropolitan area name
        - name: price_min
          in: query
          type: integer
          description: Minimum home price
        - name: price_max
          in: query
          type: integer
          description: Maximum home price
        - name: bedrooms
          in: query
          type: integer
          description: Minimum number of bedrooms
        - name: limit
          in: query
          type: integer
          description: Maximum communities to return
        - name: offset
          in: query
          type: integer
          description: Pagination offset
    - name: communities-community_id
      path: /communities/{community_id}
      operations:
      - name: getcommunity
        method: GET
        description: Get Community
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: community_id
          in: path
          type: string
          description: Community identifier
          required: true
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.TAYLOR_MORRISON_HOME_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: search-communities-rest
    port: 8080
    description: REST adapter for Taylor Morrison Home Search API — Communities. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/communities
      name: communities
      description: REST surface for communities.
      operations:
      - method: GET
        name: listcommunities
        description: List Communities
        call: search-communities.listcommunities
        with:
          state: rest.state
          city: rest.city
          metro: rest.metro
          price_min: rest.price_min
          price_max: rest.price_max
          bedrooms: rest.bedrooms
          limit: rest.limit
          offset: rest.offset
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/communities/{community-id}
      name: communities-community-id
      description: REST surface for communities-community_id.
      operations:
      - method: GET
        name: getcommunity
        description: Get Community
        call: search-communities.getcommunity
        with:
          community_id: rest.community_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: search-communities-mcp
    port: 9090
    transport: http
    description: MCP adapter for Taylor Morrison Home Search API — Communities. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-communities
      description: List Communities
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: search-communities.listcommunities
      with:
        state: tools.state
        city: tools.city
        metro: tools.metro
        price_min: tools.price_min
        price_max: tools.price_max
        bedrooms: tools.bedrooms
        limit: tools.limit
        offset: tools.offset
      outputParameters:
      - type: object
        mapping: $.
    - name: get-community
      description: Get Community
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: search-communities.getcommunity
      with:
        community_id: tools.community_id
      outputParameters:
      - type: object
        mapping: $.