public static async Task<ServersResponseCollection> GetMcp2DeployedServers(
			this IComputeApiClient client,
			ServerListOptions options = null,
			PageableRequest pagingOptions = null)
		{
			return await client.ServerManagement.Server.GetMcp2DeployedServers(options, pagingOptions);
		}
		/// <summary>
		/// The get mcp 2 deployed servers.
		/// </summary>
		/// <param name="options">
		/// The options.
		/// </param>
		/// <param name="pagingOptions">
		/// The paging options.
		/// </param>
		/// <returns>
		/// The <see cref="Task"/>.
		/// </returns>	
		public async Task<ServersResponseCollection> GetMcp2DeployedServers(
			ServerListOptions options = null,
			PageableRequest pagingOptions = null)
		{
			ServersResponseCollection servers =
				await
				_apiClient.GetAsync<ServersResponseCollection>(ApiUris.GetMcp2Servers(_apiClient.OrganizationId), pagingOptions);
			return servers;
		}