wikipedia

A minimal MCP server for interacting with Wikipedia. It provides simple tools to search for articles and retrieve full content, making it easy for AI agents to access reliable, structured knowledge.

Documentation

Wikipedia MCP Server

Lightweight tools for searching and fetching Wikipedia content in a clean, agent-friendly format.


Tools

search_wikipedia

Search for relevant Wikipedia articles.

Input

json{
  "query": "string"
}

Output


get_article

Fetch full content of a Wikipedia article.

Input

json{
  "title": "string"
}

Output


Usage

List tools

GET /tools

Search

POST /tools/search_wikipedia

Get article

POST /tools/get_article

Summary

Simple, reliable access to Wikipedia for AI systems that need factual and structured information.