Skip to main content
Glama

Git Stuff Server

by skurekjakub
adoPrThreadsSchema.ts743 B
// src/tools/adoPrThreads/adoPrThreadsSchema.ts import { z } from "zod"; // Schema for the tool input export const AdoPrThreadsRequestSchema = z.object({ pullRequestId: z.string().min(1).regex(/^\d+$/, "pullRequestId must be a numeric string.") .describe("The numeric ID of the Pull Request (as a string)."), organizationId: z.string().min(1).optional() .describe("Optional organization identifier to load specific configuration settings."), }); export type AdoPrThreadsRequest = z.infer<typeof AdoPrThreadsRequestSchema>; // We'll use the GitPullRequestCommentThread interface from azure-devops-node-api for the response structure, // so no explicit response schema is defined here, but the tool will return an array of these.

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/skurekjakub/GitStuffServer'

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