@mcp-z/mcp-outlook
    Preparing search index...

    Function messageRespond

    • Returns {
          config: {
              description: "Reply to an Outlook message";
              inputSchema: ZodObject<
                  {
                      body: ZodCoercedString<unknown>;
                      contentType: ZodDefault<ZodOptional<ZodEnum<{}>>>;
                      id: ZodCoercedString<unknown>;
                  },
                  $strip,
              >;
              outputSchema: ZodObject<
                  {
                      result: ZodDiscriminatedUnion<
                          [
                              ZodObject<
                                  {
                                      id: ZodOptional<ZodString>;
                                      success: ZodBoolean;
                                      type: ZodLiteral<"success">;
                                  },
                                  $strip,
                              >,
                              ZodObject<{}, $strip>,
                          ],
                          "type",
                      >;
                  },
                  $strip,
              >;
          };
          handler: (
              __namedParameters: {
                  body: string;
                  contentType: "text" | "html";
                  id: string;
              },
              extra: EnrichedExtra,
          ) => Promise<{ [key: string]: unknown }>;
          name: string;
      }