This commit is contained in:
2026-07-10 16:56:16 +03:00
parent 979e974521
commit afa2bf5126
6 changed files with 18 additions and 9 deletions
+4 -2
View File
@@ -17,7 +17,8 @@ export function registerAuthTools(server: McpServer): void {
description: "Authenticate to Exchange EWS using NTLM credentials."
+ " On first use all fields except domain are required."
+ " On subsequent logins only password is needed — previously saved"
+ " serverUrl, email, username, and domain are reused automatically from config.",
+ " serverUrl, email, username, and domain are reused"
+ " automatically from config.",
inputSchema: z.object({
serverUrl: z.string().optional().describe("EWS server URL"),
email: z.string().optional().describe("Email address"),
@@ -176,7 +177,8 @@ export function registerAuthTools(server: McpServer): void {
"logout",
{
description:
"Clear stored credentials (serverUrl, email, username, domain, password). No parameters.",
"Clear stored credentials (serverUrl, email, username, domain, password)."
+ " No parameters.",
inputSchema: z.object({}),
outputSchema: z.object({
success: z.boolean(),