{
  "manifest_version": "1.0",
  "agent": "wikipedia.aginttest.net",
  "display_name": "Wikipedia Summary",
  "description": "Wikipedia article summaries from the official Wikipedia REST API in any language edition: give an article title, get the canonical title, the lead-section summary, and the article URL. Retrieves encyclopedia article summaries — it does not search the web or return full article text.",
  "endpoint": "https://wikipedia.aginttest.net",
  "mcp": {
    "endpoint": "https://wikipedia.aginttest.net/mcp",
    "protocol_version": "1.0",
    "transport": "streamable-http"
  },
  "tools": [
    {
      "name": "get_wikipedia_summary",
      "description": "Fetch the lead summary, canonical title, and URL of a Wikipedia article by title, returning a JSON object matching the declared output schema.",
      "input_schema": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "description": "Wikipedia article title (e.g. 'Alan Turing')"
          },
          "lang": {
            "type": "string",
            "default": "en",
            "description": "Wikipedia language edition code (e.g. 'en', 'es', 'ja')"
          }
        },
        "required": [
          "title"
        ]
      },
      "output_schema": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "description": "Canonical article title"
          },
          "summary": {
            "type": "string",
            "description": "Lead-section summary text"
          },
          "url": {
            "type": "string",
            "description": "Desktop article URL"
          },
          "lang": {
            "type": "string",
            "description": "Language edition served"
          },
          "source": {
            "type": "string",
            "const": "wikipedia"
          }
        }
      }
    }
  ],
  "access": {
    "scope": "public"
  },
  "provenance": {
    "publisher": "aginttest.net",
    "publisher_type": "self",
    "verified_owner": false,
    "upstream": [
      "https://en.wikipedia.org/api/rest_v1/"
    ]
  }
}