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

    Function messageRespond

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