azure-devops-mcp

by RyanCardin15
Verified

suggestCodeOptimization

Suggest code optimizations using AI

Input Schema

NameRequiredDescriptionDefault
filePathYesPath to the file to optimize
lineEndNoEnding line number
lineStartNoStarting line number
optimizationTypeNoType of optimization to focus on
repositoryIdYesID of the repository

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "filePath": { "description": "Path to the file to optimize", "type": "string" }, "lineEnd": { "description": "Ending line number", "type": "number" }, "lineStart": { "description": "Starting line number", "type": "number" }, "optimizationType": { "description": "Type of optimization to focus on", "enum": [ "performance", "memory", "readability", "all" ], "type": "string" }, "repositoryId": { "description": "ID of the repository", "type": "string" } }, "required": [ "repositoryId", "filePath" ], "type": "object" }

You must be authenticated.

Other Tools