We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/skurekjakub/GitStuffServer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
adoPrChangesSchema.ts•493 B
// src/tools/adoPrChanges/adoPrChangesSchema.ts
import { z } from "zod";
// Tool schema definition
export const adoPrChangesSchema = z.object({
pullRequestId: z.string().min(1).regex(/^\d+$/).describe("The numeric ID of the Pull Request (as a string)."),
organizationId: z.string().min(1).describe("Optional organization identifier to load specific configuration settings.")
});
// Infer the input type from the schema
export type AdoPrChangesInput = z.infer<typeof adoPrChangesSchema>;