A bridge for AI agents to query, search, and retrieve live Microsoft technical documentation and official code samples.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install mslearn-mcp
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install mslearn-mcp using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The Microsoft Learn MCP skill is a specialized integration that connects AI agents to the Model Context Protocol (MCP) server hosted by Microsoft. By utilizing this within the Openclaw Skills ecosystem, developers can give their AI assistants real-time access to authoritative documentation for Azure, .NET, Windows, and more. This eliminates the risk of outdated LLM training data by fetching the latest technical specs and implementation guides directly from the source.
This skill functions as a remote MCP server via streamable HTTP, making it lightweight and easy to integrate into existing agentic workflows. It is essential for developers who require high-accuracy technical information and verified code snippets for Microsoft technologies.
To add this skill to your environment using mcporter, run the following command:
mcporter config add --name mslearn --url https://learn.microsoft.com/api/mcp --type http
Alternatively, you can manually update your configuration file located at ~/.config/mcporter/config.json:
{
"servers": {
"mslearn": {
"type": "http",
"url": "https://learn.microsoft.com/api/mcp"
}
}
}
Verify the connection by listing the available tools:
mcporter list mslearn --schema
The skill interacts with dynamic tool schemas provided by Microsoft. The following table describes the core data interaction points:
| Tool | Primary Parameters | Function |
|---|---|---|
| microsoft_docs_search | query (string), locale (optional) | Performs a keyword search across Microsoft Learn catalog. |
| microsoft_docs_fetch | url (string) | Retrieves the markdown content of a specific documentation page. |
| microsoft_code_sample_search | query (string), language (optional) | Searches for official repository samples filtered by tech stack. |
All tools support a --output json flag for structured data processing.
Loading
An automated diagramming tool that converts text descriptions into hand-drawn Excalidraw visuals for Obsidian and web platforms.

A specialized tool for programmatically generating high-quality terminal screenshots, animated GIFs, and videos using simple script files.

A containerized headless browser tool using Podman and Playwright to scrape text and HTML from JavaScript-heavy websites.

Search and retrieve indexed Discord community discussions to find real-world solutions to coding problems and library issues.

A local-first REST API for managing tasks, recurring payments, and project progress logs with full JSON persistence.

A specialized skill for synchronizing Garmin Connect activity history and training schedules into a structured JSON database.








































