{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/mslearn-mcp",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mslearn-mcp",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/mcp-details.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/mslearn-mcp",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Microsoft Learn MCP",
        "body": "Connect to the Microsoft Learn MCP (Model Context Protocol) Server to interact with Microsoft documentation through structured tools."
      },
      {
        "title": "Endpoint",
        "body": "https://learn.microsoft.com/api/mcp\n\nThis is a remote MCP server using streamable HTTP. It provides three main tools:\n\nmicrosoft_docs_search — Search Microsoft documentation\nmicrosoft_docs_fetch — Fetch specific documentation pages\nmicrosoft_code_sample_search — Search for official code samples"
      },
      {
        "title": "Add to mcporter config",
        "body": "mcporter config add --name mslearn --url https://learn.microsoft.com/api/mcp --type http\n\nOr manually add to ~/.config/mcporter/config.json:\n\n{\n  \"servers\": {\n    \"mslearn\": {\n      \"type\": \"http\",\n      \"url\": \"https://learn.microsoft.com/api/mcp\"\n    }\n  }\n}"
      },
      {
        "title": "Verify connection",
        "body": "mcporter list mslearn --schema"
      },
      {
        "title": "Search documentation",
        "body": "mcporter call mslearn.microsoft_docs_search query=\"Azure Functions triggers\""
      },
      {
        "title": "Fetch a specific doc page",
        "body": "mcporter call mslearn.microsoft_docs_fetch url=\"https://learn.microsoft.com/en-us/azure/azure-functions/functions-triggers-bindings\""
      },
      {
        "title": "Search code samples",
        "body": "mcporter call mslearn.microsoft_code_sample_search query=\"Python blob storage\" language=\"python\""
      },
      {
        "title": "Tool Reference",
        "body": "Tool schemas are dynamic. Always check current schema with:\n\nmcporter list mslearn --schema\n\nCommon patterns:\n\nToolTypical 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)"
      },
      {
        "title": "Output formats",
        "body": "Default output is human-readable. Use --output json for structured data:\n\nmcporter call mslearn.microsoft_docs_search query=\"Entra ID\" --output json"
      },
      {
        "title": "Notes",
        "body": "No authentication required for the Learn MCP Server\nThe server interface may change dynamically; always call list to get current tools\nFor complex queries, prefer search over fetch; let the tool find relevant pages\nLocale defaults to en-us if not specified"
      }
    ],
    "body": "Microsoft Learn MCP\n\nConnect to the Microsoft Learn MCP (Model Context Protocol) Server to interact with Microsoft documentation through structured tools.\n\nEndpoint\nhttps://learn.microsoft.com/api/mcp\n\n\nThis is a remote MCP server using streamable HTTP. It provides three main tools:\n\nmicrosoft_docs_search — Search Microsoft documentation\nmicrosoft_docs_fetch — Fetch specific documentation pages\nmicrosoft_code_sample_search — Search for official code samples\nSetup\nAdd to mcporter config\nmcporter config add --name mslearn --url https://learn.microsoft.com/api/mcp --type http\n\n\nOr manually add to ~/.config/mcporter/config.json:\n\n{\n  \"servers\": {\n    \"mslearn\": {\n      \"type\": \"http\",\n      \"url\": \"https://learn.microsoft.com/api/mcp\"\n    }\n  }\n}\n\nVerify connection\nmcporter list mslearn --schema\n\nUsage\nSearch documentation\nmcporter call mslearn.microsoft_docs_search query=\"Azure Functions triggers\"\n\nFetch a specific doc page\nmcporter call mslearn.microsoft_docs_fetch url=\"https://learn.microsoft.com/en-us/azure/azure-functions/functions-triggers-bindings\"\n\nSearch code samples\nmcporter call mslearn.microsoft_code_sample_search query=\"Python blob storage\" language=\"python\"\n\nTool Reference\n\nTool schemas are dynamic. Always check current schema with:\n\nmcporter list mslearn --schema\n\n\nCommon patterns:\n\nTool\tTypical parameters\nmicrosoft_docs_search\tquery (required), locale (optional, e.g., \"en-us\")\nmicrosoft_docs_fetch\turl (required, full Learn URL)\nmicrosoft_code_sample_search\tquery (required), language (optional), product (optional)\nOutput formats\n\nDefault output is human-readable. Use --output json for structured data:\n\nmcporter call mslearn.microsoft_docs_search query=\"Entra ID\" --output json\n\nNotes\nNo authentication required for the Learn MCP Server\nThe server interface may change dynamically; always call list to get current tools\nFor complex queries, prefer search over fetch; let the tool find relevant pages\nLocale defaults to en-us if not specified"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Ricardodpalmeida/mslearn-mcp",
    "publisherUrl": "https://clawhub.ai/Ricardodpalmeida/mslearn-mcp",
    "owner": "Ricardodpalmeida",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}