Skip to main content
Glama

mcp-google-sheets

multipart-file.ts525 B
import { Static, Type } from '@sinclair/typebox' export const ApMultipartFile = Type.Object({ filename: Type.String(), data: Type.Unknown(), type: Type.Literal('file'), }) export type ApMultipartFile = Static<typeof ApMultipartFile> & { data: Buffer } export const isMultipartFile = (value: unknown): value is ApMultipartFile => { return typeof value === 'object' && value !== null && 'type' in value && value.type === 'file' && 'filename' in value && 'data' in value && value.data instanceof 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