# Send Microsoft Learn MCP to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "mslearn-mcp",
    "name": "Microsoft Learn MCP",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Ricardodpalmeida/mslearn-mcp",
    "canonicalUrl": "https://clawhub.ai/Ricardodpalmeida/mslearn-mcp",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/mslearn-mcp",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mslearn-mcp",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/mcp-details.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "mslearn-mcp",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T14:30:43.717Z",
      "expiresAt": "2026-05-12T14:30:43.717Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mslearn-mcp",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mslearn-mcp",
        "contentDisposition": "attachment; filename=\"mslearn-mcp-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "mslearn-mcp"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/mslearn-mcp"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/mslearn-mcp",
    "downloadUrl": "https://openagent3.xyz/downloads/mslearn-mcp",
    "agentUrl": "https://openagent3.xyz/skills/mslearn-mcp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mslearn-mcp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mslearn-mcp/agent.md"
  }
}
```
## Documentation

### Microsoft Learn MCP

Connect to the Microsoft Learn MCP (Model Context Protocol) Server to interact with Microsoft documentation through structured tools.

### Endpoint

https://learn.microsoft.com/api/mcp

This is a remote MCP server using streamable HTTP. It provides three main tools:

microsoft_docs_search — Search Microsoft documentation
microsoft_docs_fetch — Fetch specific documentation pages
microsoft_code_sample_search — Search for official code samples

### Add to mcporter config

mcporter config add --name mslearn --url https://learn.microsoft.com/api/mcp --type http

Or manually add to ~/.config/mcporter/config.json:

{
  "servers": {
    "mslearn": {
      "type": "http",
      "url": "https://learn.microsoft.com/api/mcp"
    }
  }
}

### Verify connection

mcporter list mslearn --schema

### Search documentation

mcporter call mslearn.microsoft_docs_search query="Azure Functions triggers"

### Fetch a specific doc page

mcporter call mslearn.microsoft_docs_fetch url="https://learn.microsoft.com/en-us/azure/azure-functions/functions-triggers-bindings"

### Search code samples

mcporter call mslearn.microsoft_code_sample_search query="Python blob storage" language="python"

### Tool Reference

Tool schemas are dynamic. Always check current schema with:

mcporter list mslearn --schema

Common patterns:

ToolTypical parametersmicrosoft_docs_searchquery (required), locale (optional, e.g., "en-us")microsoft_docs_fetchurl (required, full Learn URL)microsoft_code_sample_searchquery (required), language (optional), product (optional)

### Output formats

Default output is human-readable. Use --output json for structured data:

mcporter call mslearn.microsoft_docs_search query="Entra ID" --output json

### Notes

No authentication required for the Learn MCP Server
The server interface may change dynamically; always call list to get current tools
For complex queries, prefer search over fetch; let the tool find relevant pages
Locale defaults to en-us if not specified
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Ricardodpalmeida
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-05T14:30:43.717Z
- Expires at: 2026-05-12T14:30:43.717Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/mslearn-mcp)
- [Send to Agent page](https://openagent3.xyz/skills/mslearn-mcp/agent)
- [JSON manifest](https://openagent3.xyz/skills/mslearn-mcp/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/mslearn-mcp/agent.md)
- [Download page](https://openagent3.xyz/downloads/mslearn-mcp)