list_tools
Discover available tools in the Azure DevOps MCP server to manage work items, wikis, and repositories for streamlined development workflows.
Instructions
Lists all available tools with their names.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- mcp_azure_devops/server.py:897-898 (handler)The execution handler for the 'list_tools' tool within the _execute_tool method, which returns a list of all available tool names.elif name == "list_tools": return [tool.name for tool in self.tools]
- mcp_azure_devops/server.py:557-561 (schema)Input schema definition for the 'list_tools' tool, specifying an empty object with no required properties.inputSchema={ "type": "object", "properties": {}, "additionalProperties": False }
- mcp_azure_devops/server.py:554-562 (registration)Registration of the 'list_tools' tool object in the self.tools list during _setup_tools method.types.Tool( name="list_tools", description="Lists all available tools with their names.", inputSchema={ "type": "object", "properties": {}, "additionalProperties": False } ),