Skip to main content
Glama

mcp-google-sheets

step-execution-path.ts589 B
export class StepExecutionPath { public path: readonly [string, number][] = [] constructor(path: readonly [string, number][]) { this.path = [...path] } loopIteration({ loopName, iteration }: { loopName: string, iteration: number }): StepExecutionPath { return new StepExecutionPath([...this.path, [loopName, iteration]]) } static empty(): StepExecutionPath { return new StepExecutionPath([]) } removeLast(): StepExecutionPath { const newPath = this.path.slice(0, -1) return new StepExecutionPath(newPath) } }

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