UNPKG

@tiberriver256/mcp-server-azure-devops

Version:

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

18 lines (17 loc) 276 B
/** * User profile information */ export interface UserProfile { /** * The ID of the user */ id: string; /** * The display name of the user */ displayName: string; /** * The email address of the user */ email: string; }