Skip to main content
Glama

mcp-google-sheets

index.ts1.57 kB
import { Static, Type } from '@sinclair/typebox' import { BaseModelSchema } from '../common/base-model' export const AnalyticsPieceReportItem = Type.Object({ name: Type.String(), displayName: Type.String(), logoUrl: Type.String(), usageCount: Type.Number(), }) export type AnalyticsPieceReportItem = Static<typeof AnalyticsPieceReportItem> export const AnalyticsPieceReport = Type.Array(AnalyticsPieceReportItem) export type AnalyticsPieceReport = Static<typeof AnalyticsPieceReport> export const AnalyticsProjectReportItem = Type.Object({ id: Type.String(), displayName: Type.String(), activeFlows: Type.Number(), totalFlows: Type.Number(), }) export type AnalyticsProjectReportItem = Static<typeof AnalyticsProjectReportItem> export const AnalyticsProjectReport = Type.Array(AnalyticsProjectReportItem) export type AnalyticsProjectReport = Static<typeof AnalyticsProjectReport> export const PlatformAnalyticsReport = Type.Object({ ...BaseModelSchema, totalFlows: Type.Number(), activeFlows: Type.Number(), totalUsers: Type.Number(), activeUsers: Type.Number(), totalProjects: Type.Number(), activeProjects: Type.Number(), uniquePiecesUsed: Type.Number(), activeFlowsWithAI: Type.Number(), topPieces: AnalyticsPieceReport, tasksUsage: Type.Array(Type.Object({ day: Type.String(), totalTasks: Type.Number(), })), topProjects: AnalyticsProjectReport, platformId: Type.String(), }) export type PlatformAnalyticsReport = Static<typeof PlatformAnalyticsReport>

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