Skip to main content
Glama
schema.ts967 B
import { z } from 'zod'; import { defaultProject } from '../../../utils/environment'; export const GetPipelineLogSchema = z.object({ projectId: z .string() .optional() .describe(`The ID or name of the project (Default: ${defaultProject})`), runId: z.number().int().min(1).describe('Pipeline run identifier'), logId: z .number() .int() .min(1) .describe('Log identifier from the timeline record'), format: z .enum(['plain', 'json']) .optional() .describe('Optional format for the log contents (plain or json)'), startLine: z .number() .int() .min(0) .optional() .describe('Optional starting line number for the log segment'), endLine: z .number() .int() .min(0) .optional() .describe('Optional ending line number for the log segment'), pipelineId: z .number() .int() .min(1) .optional() .describe('Optional pipeline numeric ID for reference only'), });

Latest Blog Posts

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/Tiberriver256/mcp-server-azure-devops'

If you have feedback or need assistance with the MCP directory API, please join our Discord server