Skip to main content
Glama

mcp-google-sheets

index.ts1.25 kB
import { Static, Type } from '@sinclair/typebox' import { BaseModelSchema } from '../common/base-model' import { ApId } from '../common/id-generator' export type FileId = ApId export enum FileType { UNKNOWN = 'UNKNOWN', FLOW_RUN_LOG = 'FLOW_RUN_LOG', PACKAGE_ARCHIVE = 'PACKAGE_ARCHIVE', FLOW_STEP_FILE = 'FLOW_STEP_FILE', SAMPLE_DATA = 'SAMPLE_DATA', TRIGGER_PAYLOAD = 'TRIGGER_PAYLOAD', SAMPLE_DATA_INPUT = 'SAMPLE_DATA_INPUT', TRIGGER_EVENT_FILE = 'TRIGGER_EVENT_FILE', PROJECT_RELEASE = 'PROJECT_RELEASE', } export enum FileCompression { NONE = 'NONE', GZIP = 'GZIP', } export enum FileLocation { S3 = 'S3', DB = 'DB', } export const File = Type.Object({ ...BaseModelSchema, projectId: Type.Optional(Type.String()), platformId: Type.Optional(Type.String()), type: Type.Enum(FileType), compression: Type.Enum(FileCompression), data: Type.Optional(Type.Unknown()), location: Type.Enum(FileLocation), size: Type.Optional(Type.Number()), fileName: Type.Optional(Type.String()), s3Key: Type.Optional(Type.String()), metadata: Type.Optional(Type.Record(Type.String(), Type.String())), }) export type File = Static<typeof File> & { data: Buffer }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/activepieces/activepieces'

If you have feedback or need assistance with the MCP directory API, please join our Discord server