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

    Function messageMarkRead

    • Returns {
          config: {
              description: "Mark a Gmail message as read";
              inputSchema: ZodObject<{ id: ZodCoercedString<unknown> }, $strip>;
              outputSchema: ZodObject<
                  {
                      result: ZodDiscriminatedUnion<
                          [
                              ZodObject<{ id: ZodString; type: ZodLiteral<"success"> }, $strip>,
                              ZodObject<{}, $strip>,
                          ],
                          "type",
                      >;
                  },
                  $strip,
              >;
          };
          handler: (
              __namedParameters: { id: string },
              extra: EnrichedExtra,
          ) => Promise<
              {
                  content: { text: string; type: "text" }[];
                  structuredContent: { result: { id: string; type: "success" } };
              },
          >;
          name: string;
      }