2025-10-11 18:25:59 +08:00

40 lines
1.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using ModelContextProtocol.Server;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XiaoZhiSharp_MauiBlazorApp.McpTools
{
[McpServerToolType]
public sealed class Chrome_Tool
{
[McpServerTool, Description("打开网站")]
public static string OpenUrl(string url)
{
return OpenUrlInBrowser(url);
}
public static string OpenUrlInBrowser(string url)
{
try
{
// 如果URL为空使用默认主页
if (string.IsNullOrEmpty(url))
url = "https://www.google.com";
// 使用MAUI的浏览器启动器
Microsoft.Maui.ApplicationModel.Browser.OpenAsync(new Uri(url), Microsoft.Maui.ApplicationModel.BrowserLaunchMode.SystemPreferred);
return "网站打开成功";
}
catch (Exception ex)
{
Console.WriteLine($"打开浏览器时出错: {ex.Message}");
return "网站打开失败";
}
}
}
}