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
- Searchkeyword
on 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
Bucketeer Docs Local MCP Server
A local server to query Bucketeer documentation, which automatically fetches and caches content from its GitHub repository.
Exa
Exa AI Search API
Agently MCP
Discover public A2A agents on the Agently platform using its public API.
Yandex Search MCP Server
Perform real-time web searches using the Yandex Search API.
CoolPC MCP Server
Query computer component prices from Taiwan's CoolPC website to generate AI-assisted price quotes.
Supavec
Fetch relevant embeddings and content from Supavec for AI assistants.
Perplexity MCP Zerver
Interact with Perplexity.ai using Puppeteer without an API key. Requires Node.js and stores chat history locally.
Serper MCP Server
Access Google Search results using the Serper API.
Semantic Scholar
Access Semantic Scholar's academic paper database through their API.
WikiJS
Search and retrieve content from a WikiJS knowledge base.