{
  "info": {
    "name": "Yandex — mcp.ai",
    "description": "REST API for the Yandex MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/yandex",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "yandex_organization_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/organization/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "organization",
            "search"
          ]
        },
        "description": "Tool to find businesses and organizations by name, address, or tin. use when you need to search for companies in a specific region or text query.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ll\": \"\",\n  \"spn\": \"\",\n  \"uri\": \"\",\n  \"bbox\": \"\",\n  \"lang\": \"\",\n  \"rspn\": false,\n  \"skip\": 0,\n  \"text\": \"\",\n  \"type\": \"\",\n  \"apikey\": \"\",\n  \"results\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "yandex_yandex_geocoder_reverse",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/yandex/geocoder/reverse",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "yandex",
            "geocoder",
            "reverse"
          ]
        },
        "description": "Tool to perform reverse geocoding using yandex maps http geocoder api.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"kind\": \"\",\n  \"lang\": \"\",\n  \"apikey\": \"\",\n  \"format\": \"\",\n  \"latitude\": 0,\n  \"longitude\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "yandex_yandex_route",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/yandex/route",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "yandex",
            "route"
          ]
        },
        "description": "Tool to generate detailed route for driving, walking, or public transport. use when planning a route between specified geographic points.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mode\": \"\",\n  \"width\": 0,\n  \"apikey\": \"\",\n  \"height\": 0,\n  \"length\": 0,\n  \"levels\": \"\",\n  \"weight\": 0,\n  \"payload\": 0,\n  \"traffic\": \"\",\n  \"eco_class\": 0,\n  \"waypoints\": \"\",\n  \"max_weight\": 0,\n  \"avoid_tolls\": false,\n  \"avoid_zones\": \"\",\n  \"axle_weight\": 0,\n  \"has_trailer\": false,\n  \"departure_time\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "yandex_yandex_tiles",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/yandex/tiles",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "yandex",
            "tiles"
          ]
        },
        "description": "Tool to fetch individual map tile images by x/y coordinates and zoom level. use after calculating tile indices for custom map rendering.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"l\": \"\",\n  \"x\": 0,\n  \"y\": 0,\n  \"z\": 0,\n  \"lang\": \"\",\n  \"scale\": 0,\n  \"apikey\": \"\",\n  \"maptype\": \"\",\n  \"projection\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}