Azure Maps · Capability

Azure Maps Search REST API — Geocoding

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

Run with Naftiko Microsoft Azure MapsGeocoding

What You Can Do

GET
Reversegeocode — Maps Reverse geocode
/v1/search/address/reverse/{format}
GET
Searchaddress — Maps Address search
/v1/search/address/{format}

MCP Tools

maps-reverse-geocode

Maps Reverse geocode

read-only idempotent
maps-address-search

Maps Address search

read-only idempotent

Capability Spec

microsoft-azure-maps-geocoding.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Azure Maps Search REST API — Geocoding
  description: 'Azure Maps Search REST API — Geocoding. 2 operations. Lead operation: Maps Reverse geocode. Self-contained
    Naftiko capability covering one Microsoft Azure Maps business surface.'
  tags:
  - Microsoft Azure Maps
  - Geocoding
  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-geocoding
    baseUri: https://atlas.microsoft.com
    description: Azure Maps Search REST API — Geocoding business capability. Self-contained, no shared references.
    resources:
    - name: search-address-reverse-format
      path: /search/address/reverse/{format}
      operations:
      - name: reversegeocode
        method: GET
        description: Maps Reverse geocode
        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-address-format
      path: /search/address/{format}
      operations:
      - name: searchaddress
        method: GET
        description: Maps Address 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-geocoding-rest
    port: 8080
    description: REST adapter for Azure Maps Search REST API — Geocoding. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/search/address/reverse/{format}
      name: search-address-reverse-format
      description: REST surface for search-address-reverse-format.
      operations:
      - method: GET
        name: reversegeocode
        description: Maps Reverse geocode
        call: microsoft-azure-maps-geocoding.reversegeocode
        with:
          api-version: rest.api-version
          query: rest.query
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/search/address/{format}
      name: search-address-format
      description: REST surface for search-address-format.
      operations:
      - method: GET
        name: searchaddress
        description: Maps Address search
        call: microsoft-azure-maps-geocoding.searchaddress
        with:
          api-version: rest.api-version
          query: rest.query
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: microsoft-azure-maps-geocoding-mcp
    port: 9090
    transport: http
    description: MCP adapter for Azure Maps Search REST API — Geocoding. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: maps-reverse-geocode
      description: Maps Reverse geocode
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: microsoft-azure-maps-geocoding.reversegeocode
      with:
        api-version: tools.api-version
        query: tools.query
      outputParameters:
      - type: object
        mapping: $.
    - name: maps-address-search
      description: Maps Address search
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: microsoft-azure-maps-geocoding.searchaddress
      with:
        api-version: tools.api-version
        query: tools.query
      outputParameters:
      - type: object
        mapping: $.