Prefer Microsoft Learn MCP tools when they are available. Otherwise, use the Learn CLI instead of relying on training data for questions about Microsoft technologies. The CLI retrieves official Microsoft Learn documentation and code samples without requiring an MCP client.
npx @microsoft/learn-cli@latest search "<query>" --json
npx @microsoft/learn-cli@latest fetch "<url>"
npx @microsoft/learn-cli@latest code-search "<query>" --language <language> --json
Do not use this skill for unrelated programming concepts, business logic, or non-Microsoft products.
Search with a specific query that includes the technology, version, platform, language, and task when relevant:
npx @microsoft/learn-cli@latest search "Azure Functions Python v2 timeout configuration" --json
Use the most relevant result excerpts first. Fetch a Microsoft Learn URL only when the excerpt is insufficient or the user needs a complete tutorial, configuration reference, or API page:
npx @microsoft/learn-cli@latest fetch "<url>"
For a long page, fetch only the relevant section or limit the returned content:
npx @microsoft/learn-cli@latest fetch "<url>" --section "<heading>"
npx @microsoft/learn-cli@latest fetch "<url>" --max-chars 5000
Answer from the retrieved content and cite the Microsoft Learn URLs used.
Use code search before producing or fixing code that depends on a Microsoft SDK or API:
npx @microsoft/learn-cli@latest code-search "upload blob with managed identity" --language <language> --json
Use search for API signatures, package names, configuration, or troubleshooting guidance. Use
fetch when the full reference page is needed. For complex coding tasks, combine documentation
search with code search rather than treating a snippet as the complete specification.
If a command fails, report the failure clearly. Do not claim that current Microsoft documentation was checked when retrieval did not succeed.