{
  "$schema": "https://webmachinelearning.github.io/webmcp/schema/v0.1.0",
  "serverInfo": {
    "name": "primed-content",
    "version": "1.0.0"
  },
  "tools": [
    {
      "name": "listPrimedArticles",
      "description": "List all Primed emergency-readiness articles. Returns a markdown index of titles, summaries, and URLs.",
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false
      },
      "implementation": {
        "method": "GET",
        "url": "https://www.primed.fit/learn/md"
      }
    },
    {
      "name": "getPrimedArticle",
      "description": "Fetch a Primed article in markdown by slug (e.g. how-to-do-cpr).",
      "inputSchema": {
        "type": "object",
        "properties": {
          "slug": {
            "type": "string",
            "description": "The article slug, e.g. how-to-do-cpr."
          }
        },
        "required": [
          "slug"
        ],
        "additionalProperties": false
      },
      "implementation": {
        "method": "GET",
        "url": "https://www.primed.fit/learn/{slug}/md"
      }
    },
    {
      "name": "getStateReadinessGuide",
      "description": "Fetch a US state readiness guide in markdown by slug (e.g. california, texas).",
      "inputSchema": {
        "type": "object",
        "properties": {
          "state": {
            "type": "string",
            "description": "Lowercase state slug, e.g. california."
          }
        },
        "required": [
          "state"
        ],
        "additionalProperties": false
      },
      "implementation": {
        "method": "GET",
        "url": "https://www.primed.fit/learn/preparedness/{state}/md"
      }
    }
  ]
}
