Skip to main content
Glama

mcp-google-sheets

project-requests.ts1.19 kB
import { Metadata, NotificationStatus, Nullable, PiecesFilterType, SAFE_STRING_PATTERN } from '@activepieces/shared' import { Static, Type } from '@sinclair/typebox' export const UpdateProjectPlatformRequest = Type.Object({ notifyStatus: Type.Optional(Type.Enum(NotificationStatus)), releasesEnabled: Type.Optional(Type.Boolean()), displayName: Type.Optional(Type.String({ pattern: SAFE_STRING_PATTERN, })), externalId: Type.Optional(Type.String()), metadata: Type.Optional(Metadata), plan: Type.Optional(Type.Object({ tasks: Type.Optional(Type.Number({})), pieces: Type.Optional(Type.Array(Type.String({}))), piecesFilterType: Type.Optional(Type.Enum(PiecesFilterType)), aiCredits: Type.Optional(Type.Number({})), })), }) export type UpdateProjectPlatformRequest = Static<typeof UpdateProjectPlatformRequest> export const CreatePlatformProjectRequest = Type.Object({ displayName: Type.String({ pattern: SAFE_STRING_PATTERN, }), externalId: Nullable(Type.String()), metadata: Nullable(Metadata), }) export type CreatePlatformProjectRequest = Static<typeof CreatePlatformProjectRequest>

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