Skip to main content
Glama

Azure DevOps MCP Server

schemas.ts2.14 kB
import { z } from 'zod'; import { defaultProject, defaultOrg } from '../../utils/environment'; /** * Schema for getting a project */ export const GetProjectSchema = z.object({ projectId: z .string() .optional() .describe(`The ID or name of the project (Default: ${defaultProject})`), organizationId: z .string() .optional() .describe(`The ID or name of the organization (Default: ${defaultOrg})`), }); /** * Schema for getting detailed project information */ export const GetProjectDetailsSchema = z.object({ projectId: z .string() .optional() .describe(`The ID or name of the project (Default: ${defaultProject})`), organizationId: z .string() .optional() .describe(`The ID or name of the organization (Default: ${defaultOrg})`), includeProcess: z .boolean() .optional() .default(false) .describe('Include process information in the project result'), includeWorkItemTypes: z .boolean() .optional() .default(false) .describe('Include work item types and their structure'), includeFields: z .boolean() .optional() .default(false) .describe('Include field information for work item types'), includeTeams: z .boolean() .optional() .default(false) .describe('Include associated teams in the project result'), expandTeamIdentity: z .boolean() .optional() .default(false) .describe('Expand identity information in the team objects'), }); /** * Schema for listing projects */ export const ListProjectsSchema = z.object({ organizationId: z .string() .optional() .describe(`The ID or name of the organization (Default: ${defaultOrg})`), stateFilter: z .number() .optional() .describe( 'Filter on team project state (0: all, 1: well-formed, 2: creating, 3: deleting, 4: new)', ), top: z.number().optional().describe('Maximum number of projects to return'), skip: z.number().optional().describe('Number of projects to skip'), continuationToken: z .number() .optional() .describe('Gets the projects after the continuation token provided'), });

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