Viewing information about an MCP server in MCP Hub
Note
This feature is at the Preview stage.
To view information about an MCP server:
-
In the management console
, select the folder containing your MCP server. -
Go to AI Studio.
-
In the left-hand panel, select MCP servers and select the MCP server from the list that opens.
-
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.
-
-
Get an IAM token, which is required for authentication.
-
Save the IAM token to an environment variable:
export IAM_TOKEN="<IAM_token_contents>" -
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
folderIdis 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. -
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********" }