@tiberriver256/mcp-server-azure-devops
Version:
Azure DevOps reference server for the Model Context Protocol (MCP)
23 lines • 863 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GetWikiPageSchema = void 0;
const zod_1 = require("zod");
const environment_1 = require("../../../utils/environment");
/**
* Schema for getting a wiki page from an Azure DevOps wiki
*/
exports.GetWikiPageSchema = zod_1.z.object({
organizationId: zod_1.z
.string()
.optional()
.nullable()
.describe(`The ID or name of the organization (Default: ${environment_1.defaultOrg})`),
projectId: zod_1.z
.string()
.optional()
.nullable()
.describe(`The ID or name of the project (Default: ${environment_1.defaultProject})`),
wikiId: zod_1.z.string().describe('The ID or name of the wiki'),
pagePath: zod_1.z.string().describe('The path of the page within the wiki'),
});
//# sourceMappingURL=schema.js.map