Yandex Cloud
Search
Contact UsTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex AI Studio
  • About Yandex AI Studio
  • Getting started with Model Gallery
  • Yandex Workflows
    • All guides
    • Disabling request logging
    • Getting an API key
      • Viewing information about an MCP server
      • Deleting an MCP server
  • Switching from the AI Assistant API to Responses API
  • Compatibility with OpenAI
  • Quotas and limits
  • Pricing policy
  • Access management
  • Audit Trails events
  • Public materials
  • Release notes
  • Terms and definitions
  1. Step-by-step guides
  2. MCP Hub
  3. Viewing information about an MCP server

Viewing information about an MCP server in MCP Hub

Written by
Yandex Cloud
Updated at January 29, 2026

Note

This feature is at the Preview stage.

To view information about an MCP server:

Management console
cURL
  1. In the management console, select the folder containing your MCP server.

  2. Go to AI Studio.

  3. In the left-hand panel, select MCP servers and select the MCP server from the list that opens.

  4. In the window that opens, view the selected MCP server's info:

    • On the Overview tab, you can view some general information on the MCP server, including its name, ID, status, creation date, base URL, access type, and information about the service account and cloud network associated with this MCP server.

      This tab also gives information about the logging settings, tools added to the MCP server, and their settings.

    • On the Monitoring tab, you can monitor the MCP server's real-time access session and tool metrics.

    • On the Logs tab, you can view the MCP server's logs, if logging is enabled in its settings.

    • On the Operations tab, you can view the information about the MCP server's past and current operations.

  1. Get an IAM token, which is required for authentication.

  2. Save the IAM token to an environment variable:

    export IAM_TOKEN="<IAM_token_contents>"
    
  3. Use this REST API McpGateway.List method to get the list of MCP servers in the folder:

    curl \
      --request GET \
      --header "Authorization: Bearer $IAM_TOKEN" \
      "https://serverless-mcp-gateway.api.cloud.yandex.net/mcpgateway/v1/mcpGateways?folderId=<folder_ID>"
    

    Where folderId is the query parameter containing the ID of the folder you want to view the list of MCP servers for.

    Result
    {
    "gateways": [
      {
      "logOptions": {
        "disabled": true
      },
      "public": true,
      "id": "db82gpat2rsc********",
      "folderId": "b1gt6g8ht345********",
      "createdAt": "2025-12-18T14:00:39.911359Z",
      "name": "search-api-mcp",
      "status": "ACTIVE",
      "baseDomain": "https://db82gpat2rsc********.58zke0qh.mcpgw.serverless.yandexcloud.net",
      "serviceAccountId": "ajegtlf2q28a********"
      },
      ...
      {
      "logOptions": {
        "disabled": false,
        "minLevel": "INFO",
        "folderId": "b1gt6g8ht345********"
      },
      "public": true,
      "id": "db85571bpn4k********",
      "folderId": "b1gt6g8ht345********",
      "createdAt": "2025-12-18T14:25:37.272591Z",
      "name": "amocrm-mcp",
      "status": "ACTIVE",
      "baseDomain": "https://db85571bpn4k********.gs2td6d8.mcpgw.serverless.yandexcloud.net",
      "networkId": "enpcfncr6uld********",
      "serviceAccountId": "ajegtlf2q28a********"
      }
    ]
    }
    

    Save the MCP server's id. You will need later to request detailed information about the server.

  4. Use the McpGateway.Get REST API method to get detailed information about the selected MCP server by specifying its ID:

    curl \
      --request GET \
      --header "Authorization: Bearer $IAM_TOKEN" \
      "https://serverless-mcp-gateway.api.cloud.yandex.net/mcpgateway/v1/mcpGateways/<MCP_server_ID>"
    
    Result
    {
    "tools": [
      {
      "action": {
        "mcpCall": {
        "toolCall": {
          "toolName": "web_search_post",
          "parametersJson": "\\( . )"
        },
        "header": {
          "headerName": "ApiKey",
          "headerValue": "AQVNzoyHxiIXq********-_Aip6c2Oo3********"
        },
        "forwardHeaders": {
          "FolderId": "b1gt6g8ht345********"
        },
        "url": "https://d5dj4o5pbnqg********.cmxivbes.apigw.yandexcloud.net:3000/sse",
        "transport": "SSE"
        }
      },
      "name": "web_search_post",
      "description": "Perform web search (preferred).\n\nUse this tool when the user needs to search online and the search query is simple. minimal example:     \"body_application_json\": {\"query\": \u003cyour question\u003e, \"search_region\": \u003csearch_region\u003e}\n",
      "inputJsonSchema": "{\"properties\":{\"body_application_json\":{\"description\":\"Required request body containing all search parameters.\\n\",\"properties\":{\"query\":{\"description\":\"Required. The search query string to be executed against the Yandex search database.\",\"type\":\"string\"},\"search_region\":{\"default\":\"tr\",\"description\":\"Required. Search region. Valid values: 'tr' - Turkish region/query, 'en' - Not turkish region/query\",\"enum\":[\"tr\",\"en\"],\"type\":\"string\"}},\"type\":\"object\"}},\"type\":\"object\"}"
      }
    ],
    "logOptions": {
      "disabled": true
    },
    "public": true,
    "id": "db82gpat2rsc********",
    "folderId": "b1gt6g8ht345********",
    "createdAt": "2025-12-18T14:00:39.911359Z",
    "name": "search-api-mcp",
    "status": "ACTIVE",
    "baseDomain": "https://db82gpat2rsc********.58zke0qh.mcpgw.serverless.yandexcloud.net",
    "serviceAccountId": "ajegtlf2q28a********",
    "cloudId": "b1gia87mbaom********"
    }
    

See alsoSee also

  • MCP Hub

Was the article helpful?

Previous
Creating an MCP server from scratch
Next
Deleting an MCP server
© 2026 Direct Cursus Technology L.L.C.