get_managed_transform
Query managed transform configuration for Edge Security Acceleration sites to retrieve security settings and deployment parameters.
Instructions
Query Managed Transform Configuration.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| siteId | Yes | Site ID, which can be obtained by calling ListSites. | |
| siteVersion | No | The version number of the site. For sites with version management enabled, you can use this parameter to specify the effective version of the configuration, defaulting to version 0. |
Implementation Reference
- The core handler function implementing the 'get_managed_transform' tool logic. It processes the MCP CallToolRequest, invokes the API service, and formats the response.export const get_managed_transform = async (request: CallToolRequest) => { const res = await api.getManagedTransform( request.params.arguments as GetManagedTransformRequest, ); return { content: [{ type: 'text', text: JSON.stringify(res) }], success: true, }; };
- The Tool object defining the schema, name, description, and annotations for the 'get_managed_transform' tool, including input validation schema.export const GET_MANAGED_TRANSFORM_TOOL: Tool = { name: 'get_managed_transform', description: 'Query Managed Transform Configuration.', inputSchema: { type: 'object', properties: { siteId: { type: 'number', description: 'Site ID, which can be obtained by calling ListSites.', example: [12228828888], }, siteVersion: { type: 'number', description: 'The version number of the site. For sites with version management enabled, you can use this parameter to specify the effective version of the configuration, defaulting to version 0.', example: [0], }, }, required: ['siteId'], annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: false, }, }, };
- src/tools/list-esa-function.ts:164-208 (registration)Registration of the tool handler in the esaHandlers object, mapping 'get_managed_transform' to its function (line 200). This is likely used by the MCP server to dispatch calls.export const esaHandlers: ToolHandlers = { site_active_list, site_match, site_route_list, site_record_list, routine_create, routine_code_commit, routine_delete, routine_list, routine_get, routine_code_deploy, routine_route_list, deployment_delete, route_create, route_delete, route_update, route_get, er_record_create, er_record_delete, er_record_list, html_deploy, create_site, update_site_pause, get_site_pause, create_site_mx_record, create_site_ns_record, create_site_txt_record, create_site_cname_record, create_site_a_or_aaaa_record, update_record, list_records, get_record, delete_record, update_ipv6, get_ipv6, update_managed_transform, get_managed_transform, set_certificate, apply_certificate, get_certificate, delete_certificate, list_certificates, get_certificate_quota, list_sites, };
- src/tools/list-esa-function.ts:152-155 (registration)Includes the GET_MANAGED_TRANSFORM_TOOL in the managed transform tools list, which is merged into the main ESA_OPENAPI_LIST for tool discovery.export const MANAGED_TRANSFORM_LIST = [ UPDATE_MANAGED_TRANSFORM_TOOL, GET_MANAGED_TRANSFORM_TOOL, ];
- src/utils/service.ts:488-497 (helper)Helper method in the API service client that wraps the Alibaba Cloud ESA client call for getManagedTransform, used by the tool handler.getManagedTransform(params: GetManagedTransformRequest) { const request = new GetManagedTransformRequest(params); return this.callApi( this.client.getManagedTransform.bind(this.client) as ApiMethod< GetManagedTransformRequest, GetManagedTransformResponse >, request, ); }