Skip to main content
Glama

mcp-google-sheets

test-flow-run-request.ts1.11 kB
import { Static, Type } from '@sinclair/typebox' import { ApId } from '../common/id-generator' import { FlowRunStatus } from './execution/flow-execution' import { FlowRetryStrategy } from './flow-run' export const TestFlowRunRequestBody = Type.Object({ flowVersionId: ApId, }) export type TestFlowRunRequestBody = Static<typeof TestFlowRunRequestBody> export const RetryFlowRequestBody = Type.Object({ strategy: Type.Enum(FlowRetryStrategy), projectId: ApId, }) export type RetryFlowRequestBody = Static<typeof RetryFlowRequestBody> export const BulkRetryFlowRequestBody = Type.Object({ projectId: ApId, flowRunIds: Type.Optional(Type.Array(ApId)), excludeFlowRunIds: Type.Optional(Type.Array(ApId)), strategy: Type.Enum(FlowRetryStrategy), status: Type.Optional(Type.Array(Type.Enum(FlowRunStatus))), flowId: Type.Optional(Type.Array(ApId)), createdAfter: Type.Optional(Type.String()), createdBefore: Type.Optional(Type.String()), failedStepName: Type.Optional(Type.String()), }) export type BulkRetryFlowRequestBody = Static<typeof BulkRetryFlowRequestBody>

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