{
  "protocolVersion": "2024-11-05",
  "serverInfo": {
    "name": "Wikipedia EN History StaticMCP",
    "version": "1.0.0"
  },
  "capabilities": {
    "resources": [
      {
        "uri": "wikipedia://stats",
        "name": "Wikipedia Statistics",
        "description": "Statistics about the Wikipedia dump",
        "mimeType": "application/json"
      }
    ],
    "tools": [
      {
        "name": "get_article",
        "description": "Get the full content of a specific Wikipedia article",
        "inputSchema": {
          "properties": {
            "title": {
              "description": "Article title",
              "type": "string"
            }
          },
          "required": [
            "title"
          ],
          "type": "object"
        }
      },
      {
        "name": "list_articles",
        "description": "List available Wikipedia articles with pagination",
        "inputSchema": {
          "properties": {
            "page": {
              "description": "Page number (1-based, default: 1)",
              "minimum": 1,
              "type": "integer"
            }
          },
          "required": [],
          "type": "object"
        }
      },
      {
        "name": "list_categories",
        "description": "List all available article categories",
        "inputSchema": {
          "properties": {},
          "required": [],
          "type": "object"
        }
      },
      {
        "name": "categories",
        "description": "Get articles from a specific category",
        "inputSchema": {
          "properties": {
            "category": {
              "description": "Category name",
              "type": "string"
            }
          },
          "required": [
            "category"
          ],
          "type": "object"
        }
      }
    ]
  }
}