UNPKG

@tiberriver256/mcp-server-azure-devops

Version:

Azure DevOps reference server for the Model Context Protocol (MCP)

15 lines (14 loc) 497 B
#!/usr/bin/env node /** * Entry point for the Azure DevOps MCP Server */ import { AuthenticationMethod } from './shared/auth/auth-factory'; /** * Normalize auth method string to a valid AuthenticationMethod enum value * in a case-insensitive manner * * @param authMethodStr The auth method string from environment variable * @returns A valid AuthenticationMethod value */ export declare function normalizeAuthMethod(authMethodStr?: string): AuthenticationMethod; export * from './server';