Azure Maps · Capability

Azure Maps Search REST API — Search

Azure Maps Search REST API — Search. 2 operations. Lead operation: Maps Fuzzy search. Self-contained Naftiko capability covering one Microsoft Azure Maps business surface.

Run with Naftiko Microsoft Azure MapsSearch

What You Can Do

GET
Fuzzysearch — Maps Fuzzy search
/v1/search/fuzzy/{format}
GET
Searchpoi — Maps POI search
/v1/search/poi/{format}

MCP Tools

maps-fuzzy-search

Maps Fuzzy search

read-only idempotent
maps-poi-search

Maps POI search

read-only idempotent

Capability Spec

microsoft-azure-maps-search.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Azure Maps Search REST API — Search
  description: 'Azure Maps Search REST API — Search. 2 operations. Lead operation: Maps Fuzzy search. Self-contained Naftiko
    capability covering one Microsoft Azure Maps business surface.'
  tags:
  - Microsoft Azure Maps
  - Search
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MICROSOFT_AZURE_MAPS_API_KEY: MICROSOFT_AZURE_MAPS_API_KEY
capability:
  consumes:
  - type: http
    namespace: microsoft-azure-maps-search
    baseUri: https://atlas.microsoft.com
    description: Azure Maps Search REST API — Search business capability. Self-contained, no shared references.
    resources:
    - name: search-fuzzy-format
      path: /search/fuzzy/{format}
      operations:
      - name: fuzzysearch
        method: GET
        description: Maps Fuzzy search
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: api-version
          in: query
          type: string
          required: true
        - name: query
          in: query
          type: string
          required: true
    - name: search-poi-format
      path: /search/poi/{format}
      operations:
      - name: searchpoi
        method: GET
        description: Maps POI search
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: api-version
          in: query
          type: string
          required: true
        - name: query
          in: query
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.MICROSOFT_AZURE_MAPS_API_KEY}}'
  exposes:
  - type: rest
    namespace: microsoft-azure-maps-search-rest
    port: 8080
    description: REST adapter for Azure Maps Search REST API — Search. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/search/fuzzy/{format}
      name: search-fuzzy-format
      description: REST surface for search-fuzzy-format.
      operations:
      - method: GET
        name: fuzzysearch
        description: Maps Fuzzy search
        call: microsoft-azure-maps-search.fuzzysearch
        with:
          api-version: rest.api-version
          query: rest.query
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/search/poi/{format}
      name: search-poi-format
      description: REST surface for search-poi-format.
      operations:
      - method: GET
        name: searchpoi
        description: Maps POI search
        call: microsoft-azure-maps-search.searchpoi
        with:
          api-version: rest.api-version
          query: rest.query
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: microsoft-azure-maps-search-mcp
    port: 9090
    transport: http
    description: MCP adapter for Azure Maps Search REST API — Search. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: maps-fuzzy-search
      description: Maps Fuzzy search
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: microsoft-azure-maps-search.fuzzysearch
      with:
        api-version: tools.api-version
        query: tools.query
      outputParameters:
      - type: object
        mapping: $.
    - name: maps-poi-search
      description: Maps POI search
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: microsoft-azure-maps-search.searchpoi
      with:
        api-version: tools.api-version
        query: tools.query
      outputParameters:
      - type: object
        mapping: $.