Skip to main content
Glama

Azure DevOps MCP Server

schema.ts853 B
import { z } from 'zod'; import { defaultProject, defaultOrg } from '../../../utils/environment'; /** * Schema for validating wiki page update options */ export const UpdateWikiPageSchema = z.object({ organizationId: z .string() .optional() .nullable() .describe(`The ID or name of the organization (Default: ${defaultOrg})`), projectId: z .string() .optional() .nullable() .describe(`The ID or name of the project (Default: ${defaultProject})`), wikiId: z.string().min(1).describe('The ID or name of the wiki'), pagePath: z.string().min(1).describe('Path of the wiki page to update'), content: z .string() .min(1) .describe('The new content for the wiki page in markdown format'), comment: z .string() .optional() .nullable() .describe('Optional comment for the update'), });

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