Skip to main content
Glama

mcp-google-sheets

table.ts846 B
import { Static, Type } from '@sinclair/typebox' import { BaseModelSchema, NullableEnum } from '../common' import { Field } from './field' export enum TableAutomationTrigger { ON_NEW_RECORD = 'ON_NEW_RECORD', ON_UPDATE_RECORD = 'ON_UPDATE_RECORD', } export enum TableAutomationStatus { ENABLED = 'ENABLED', DISABLED = 'DISABLED', } export const Table = Type.Object({ ...BaseModelSchema, name: Type.String(), projectId: Type.String(), externalId: Type.String(), status: NullableEnum(Type.Enum(TableAutomationStatus)), trigger: NullableEnum(Type.Enum(TableAutomationTrigger)), }) export type Table = Static<typeof Table> export const PopulatedTable = Type.Composite([ Table, Type.Object({ fields: Type.Array(Field), }), ]) export type PopulatedTable = Static<typeof PopulatedTable>

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