fix: add installMcpServer stub to http.ts

This commit is contained in:
t8y2 2026-06-13 20:34:28 +08:00
parent 7c5021fa91
commit 0fa9964799
1 changed files with 4 additions and 0 deletions

View File

@ -1477,6 +1477,10 @@ export async function checkMcpServerStatus(): Promise<import("./tauri").McpServe
};
}
export async function installMcpServer(): Promise<string> {
throw new Error("MCP Server installation is only available in the desktop app.");
}
export async function getSystemProxyUrl(): Promise<string | null> {
return null;
}