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

    Function sheetCreate

    • Returns {
          config: {
              description: "Create a new sheet/tab in the spreadsheet/workbook";
              inputSchema: ZodObject<
                  { id: ZodString; sheetTitle: ZodCoercedString<unknown> },
                  $strip,
              >;
              outputSchema: ZodObject<
                  {
                      result: ZodDiscriminatedUnion<
                          [
                              ZodObject<
                                  {
                                      completedAt: ZodString;
                                      gid: ZodString;
                                      id: ZodString;
                                      itemsChanged: ZodNumber;
                                      itemsProcessed: ZodNumber;
                                      operationSummary: ZodString;
                                      sheetTitle: ZodString;
                                      sheetUrl: ZodString;
                                      type: ZodLiteral<"success">;
                                  },
                                  $strip,
                              >,
                              ZodObject<{}, $strip>,
                          ],
                          "type",
                      >;
                  },
                  $strip,
              >;
          };
          handler: (
              __namedParameters: { id: string; sheetTitle: string },
              extra: EnrichedExtra,
          ) => Promise<{ [key: string]: unknown }>;
          name: string;
      }