{
  "$schema": "https://static.modelcontextprotocol.io/schemas/mcp-server-card/v1.json",
  "version": "1.0",
  "protocolVersion": "2025-11-25",
  "serverInfo": {
    "name": "proud-archive",
    "title": "proud archive MCP server",
    "version": "0.2.0"
  },
  "description": "Search and retrieve proud.de magazine archive content and metadata.",
  "transport": {
    "type": "streamable-http",
    "endpoint": "/mcp"
  },
  "authentication": {
    "required": false
  },
  "tools": [
    {
      "name": "list_magazines",
      "description": "List available proud magazine issues.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "limit": {
            "type": "integer"
          }
        }
      }
    },
    {
      "name": "list_articles",
      "description": "List archive articles, optionally filtered by magazine slug.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "magazineSlug": {
            "type": "string"
          },
          "limit": {
            "type": "integer"
          }
        }
      }
    },
    {
      "name": "search_articles",
      "description": "Search article full text and metadata.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string"
          },
          "limit": {
            "type": "integer"
          }
        },
        "required": [
          "query"
        ]
      }
    },
    {
      "name": "get_article",
      "description": "Get a full article payload.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "slug": {
            "type": "string"
          }
        },
        "required": [
          "slug"
        ]
      }
    },
    {
      "name": "get_magazine",
      "description": "Get a full magazine payload.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "slug": {
            "type": "string"
          }
        },
        "required": [
          "slug"
        ]
      }
    }
  ]
}
