Skip to main content
Glama

mcp-google-sheets

telemetry.ts7.04 kB
import { RunEnvironment } from '../flow-run/flow-run' import { FlowId } from '../flows/flow' import { McpId } from '../mcp/mcp' import { ProjectId } from '../project/project' import { UserId } from '../user/user' type FlowCreated = { flowId: FlowId } type PiecesSearch = { target: 'steps' | 'triggers' search: string } type TemplateSearch = { search: string tags: string[] pieces: string[] } type RunCreated = { projectId: ProjectId flowId: FlowId environment: RunEnvironment count: number } type FlowPublished = { flowId: FlowId } type SignedUp = { userId: UserId email: string firstName: string lastName: string projectId: ProjectId } export type ClickedTutorialTelemetryParams = { tab: 'flows' | 'mcpServers' | 'tables' | 'agents' | 'todos' | 'gettingStarted' location: 'tutorials-sidebar-item' | 'table-title' | 'small-button-inside-sidebar-item' } type QuotaAlert = { percentageUsed: number } type FlowImported = { id: string name: string location: | 'import flow view' | 'inside the builder' | 'import flow by uri encoded query param' tab?: string } type FlowImportedUsingFile = { location: 'inside dashboard' | 'inside the builder' multiple: boolean } type FlowIssueClicked = { flowId: string } type FlowIssueResolved = { flowId: string } type RequestTrialSubmitted = { fullName: string email: string numberOfEmployees: string companyName: string goal: string } type RequestTrialClicked = { location: string } type KeyActivated = { date: string key: string } type UpgradeClicked = { limitType?: 'team' } type UpgradePopup = { limitType?: 'team' } type ReferralLinkCopied = { userId: UserId } type RewardButtonClicked = { source: 'note' | 'rewards-button' } type RewardInstructionsClicked = { type: 'share-template' | 'linkedin' | 'referral' | 'contribute-piece' } type Referral = { referredUserId: UserId } type FlowShared = { flowId: FlowId projectId: ProjectId } type OpenedFromDashboard = { location: 'sidenav' | 'tasks-progress' } type CopilotGeneratedCode = { code: string prompt: string } type FormsViewed = { flowId: string projectId: string formProps: Record<string, unknown> } type UserInvited = { platformId: string projectId?: string email: string } type TriggerFailuresExceeded = { projectId: string flowId: string pieceName: string pieceVersion: string } type AiProviderConfiguredOrUsed = { provider: string projectId: string platformId: string } type McpToolCalled = { mcpId: McpId toolName: string } export enum TelemetryEventName { SIGNED_UP = 'signed.up', QUOTA_ALERT = 'quota.alert', REQUEST_TRIAL_CLICKED = 'request.trial.clicked', REQUEST_TRIAL_SUBMITTED = 'request.trial.submitted', KEY_ACTIVATED = 'key.activated', FLOW_ISSUE_CLICKED = 'flow.issue.clicked', FLOW_ISSUE_RESOLVED = 'flow.issue.resolved', USER_INVITED = 'user.invited', UPGRADE_POPUP = 'upgrade.popup', CREATED_FLOW = 'flow.created', DEMO_IMPORTED = 'demo.imported', FLOW_RUN_CREATED = 'run.created', FLOW_PUBLISHED = 'flow.published', /**used with templates dialog + import flow component + flows imported by uri query param*/ FLOW_IMPORTED = 'flow.imported', /**used only with import flow dialog*/ FLOW_IMPORTED_USING_FILE = 'flow.imported.using.file', PIECES_SEARCH = 'pieces.search', REFERRAL = 'referral', REFERRAL_LINK_COPIED = 'referral.link.copied', FLOW_SHARED = 'flow.shared', TEMPLATE_SEARCH = 'template.search', COPILOT_GENERATED_CODE = 'copilot.code.generated', FORMS_VIEWED = 'forms.viewed', FORMS_SUBMITTED = 'forms.submitted', REWARDS_OPENED = 'rewards.opened', REWARDS_INSTRUCTION_CLICKED = 'rewards.instructions.clicked', TRIGGER_FAILURES_EXCEEDED = 'trigger.failures.exceeded', AI_PROVIDER_USED = 'ai.provider.used', AI_PROVIDER_CONFIGURED = 'ai.provider.configured', MCP_TOOL_CALLED = 'mcp.tool.called', UPGRADE_POPUP_OPENED = 'upgrade.popup.opened', UPGRADE_CLICKED = 'upgrade.clicked', OPENED_PRICING_FROM_DASHBOARD = 'opened.pricing.from.dashboard', CLICKED_TUTORIAL = 'clicked.tutorial', } type BaseTelemetryEvent<T, P> = { name: T payload: P } export type TelemetryEvent = | BaseTelemetryEvent<TelemetryEventName.SIGNED_UP, SignedUp> | BaseTelemetryEvent<TelemetryEventName.REFERRAL, Referral> | BaseTelemetryEvent< TelemetryEventName.REQUEST_TRIAL_CLICKED, RequestTrialClicked > | BaseTelemetryEvent<TelemetryEventName.KEY_ACTIVATED, KeyActivated> | BaseTelemetryEvent< TelemetryEventName.REQUEST_TRIAL_SUBMITTED, RequestTrialSubmitted > | BaseTelemetryEvent<TelemetryEventName.FLOW_ISSUE_CLICKED, FlowIssueClicked> | BaseTelemetryEvent< TelemetryEventName.FLOW_ISSUE_RESOLVED, FlowIssueResolved > | BaseTelemetryEvent<TelemetryEventName.UPGRADE_CLICKED, UpgradeClicked> | BaseTelemetryEvent<TelemetryEventName.UPGRADE_POPUP, UpgradePopup> | BaseTelemetryEvent<TelemetryEventName.FLOW_RUN_CREATED, RunCreated> | BaseTelemetryEvent<TelemetryEventName.FLOW_PUBLISHED, FlowPublished> | BaseTelemetryEvent<TelemetryEventName.QUOTA_ALERT, QuotaAlert> | BaseTelemetryEvent<TelemetryEventName.CREATED_FLOW, FlowCreated> | BaseTelemetryEvent<TelemetryEventName.TEMPLATE_SEARCH, TemplateSearch> | BaseTelemetryEvent<TelemetryEventName.PIECES_SEARCH, PiecesSearch> | BaseTelemetryEvent<TelemetryEventName.FLOW_IMPORTED, FlowImported> | BaseTelemetryEvent< TelemetryEventName.FLOW_IMPORTED_USING_FILE, FlowImportedUsingFile > | BaseTelemetryEvent< TelemetryEventName.REFERRAL_LINK_COPIED, ReferralLinkCopied > | BaseTelemetryEvent<TelemetryEventName.FLOW_SHARED, FlowShared> | BaseTelemetryEvent<TelemetryEventName.DEMO_IMPORTED, Record<string, never>> | BaseTelemetryEvent< TelemetryEventName.OPENED_PRICING_FROM_DASHBOARD, OpenedFromDashboard > | BaseTelemetryEvent< TelemetryEventName.COPILOT_GENERATED_CODE, CopilotGeneratedCode > | BaseTelemetryEvent<TelemetryEventName.FORMS_VIEWED, FormsViewed> | BaseTelemetryEvent<TelemetryEventName.USER_INVITED, UserInvited> | BaseTelemetryEvent<TelemetryEventName.FORMS_SUBMITTED, FormsViewed> | BaseTelemetryEvent<TelemetryEventName.REWARDS_OPENED, RewardButtonClicked> | BaseTelemetryEvent< TelemetryEventName.REWARDS_INSTRUCTION_CLICKED, RewardInstructionsClicked > | BaseTelemetryEvent< TelemetryEventName.TRIGGER_FAILURES_EXCEEDED, TriggerFailuresExceeded > | BaseTelemetryEvent< TelemetryEventName.AI_PROVIDER_USED, AiProviderConfiguredOrUsed > | BaseTelemetryEvent< TelemetryEventName.AI_PROVIDER_CONFIGURED, AiProviderConfiguredOrUsed > | BaseTelemetryEvent<TelemetryEventName.MCP_TOOL_CALLED, McpToolCalled> | BaseTelemetryEvent<TelemetryEventName.CLICKED_TUTORIAL, ClickedTutorialTelemetryParams>

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