Wikipedia MCP Server
A server that enables LLMs to query and retrieve information from Wikipedia.
Wikipedia MCP Server
A Model Context Protocol server that provides capabilities to query Wikipedia. This server enables LLMs to get information from Wikipedia.
Available Tools
-
search- Searchkeywordon Wikipedia.- Required arguments:
keyword(string): The search keywordlanguage(string): The language
- Required arguments:
-
fetch- Fetch Wikipedia page content.- Required arguments:
id(integer): The pade IDlanguage(string): The language
- Required arguments:
Installation
Using uv (recommended)
When using uv no specific installation is needed. We will
use uvx to directly run wikipedia-mcp.
Using PIP
Alternatively you can install wikipedia-mcp via pip:
pip install wikipedia-mcp-server
After installation, you can run it as a script using:
python -m wikipedia_mcp
Configurations
Using uvx
{
"mcpServers": {
"wikipedia-mcp": {
"command": "uvx",
"args": [
"wikipedia-mcp-server@latest"
]
}
}
}
Using docker
{
"mcpServers": {
"wikipedia-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/progamesigner/wikipedia-mcp:latest"
]
}
}
}
Using pip installation
{
"mcpServers": {
"wikipedia-mcp": {
"command": "python",
"args": [
"-m",
"wikipedia_mcp"
]
}
}
}
Build
Docker build:
docker build -t wikipedia-mcp .
Related Servers
MCP Compass
Explore and discover Model Context Protocol servers using natural language queries.
SearchAPI Agent
An MCP agent that integrates various search tools using the SearchAPI service. Requires SearchAPI and Google API keys.
DuckDuckGo Search
Perform web searches using the DuckDuckGo Search API.
Powertools for AWS MCP
Search the Powertools for AWS Lambda documentation across multiple runtimes to find documentation and examples.
o3 Search
Web search using OpenAI's o3 model. Requires an OpenAI API key.
Quotewise Quote MCP
Semantic quote search - 600K quotes with source transparency
Freesound MCP Server
Search and discover audio content from Freesound.org for video editing and content creation.
Bus Nearby MCP
Provides access to the Israeli transport API for geocoding and transit directions.
WolframAlpha LLM
Answer math and other queries using the WolframAlpha LLM API.
Aviationstack
An MCP server using the AviationStack API to fetch real-time flight data including airline flights, airport schedules, future flights and aircraft types.