Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 824 Bytes

user-tools.md

File metadata and controls

39 lines (26 loc) · 824 Bytes

Azure DevOps User Tools

This document describes the user-related tools provided by the Azure DevOps MCP server.

get_me

The get_me tool retrieves information about the currently authenticated user.

Input

This tool doesn't require any input parameters.

{}

Output

The tool returns the user's profile information including:

  • id: The unique identifier for the user
  • displayName: The user's display name
  • email: The user's email address

Example Response

{
  "id": "01234567-89ab-cdef-0123-456789abcdef",
  "displayName": "John Doe",
  "email": "[email protected]"
}

Error Handling

The tool may return the following errors:

  • AzureDevOpsAuthenticationError: If authentication fails
  • AzureDevOpsError: For general errors when retrieving user information