Skip to main content
Glama

Azure DevOps MCP Server

schema.ts1.3 kB
import { z } from 'zod'; import { defaultProject } from '../../../utils/environment'; /** * Schema for the triggerPipeline function */ export const TriggerPipelineSchema = z.object({ // The project containing the pipeline projectId: z .string() .optional() .describe(`The ID or name of the project (Default: ${defaultProject})`), // The ID of the pipeline to trigger pipelineId: z .number() .int() .positive() .describe('The numeric ID of the pipeline to trigger'), // The branch to run the pipeline on branch: z .string() .optional() .describe( 'The branch to run the pipeline on (e.g., "main", "feature/my-branch"). If left empty, the default branch will be used', ), // Variables to pass to the pipeline run variables: z .record( z.object({ value: z.string(), isSecret: z.boolean().optional(), }), ) .optional() .describe('Variables to pass to the pipeline run'), // Parameters for template-based pipelines templateParameters: z .record(z.string()) .optional() .describe('Parameters for template-based pipelines'), // Stages to skip in the pipeline run stagesToSkip: z .array(z.string()) .optional() .describe('Stages to skip in the pipeline run'), });

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