wikipedia-mcp

A Model Context Protocol (MCP) server that retrieves information from Wikipedia to provide context to LLMs.

GitHub Stars

97

User Rating

Not Rated

Favorites

0

Views

38

Forks

22

Issues

1

Installation
Difficulty
Beginner
Estimated Time
5-10 minutes

Installation

Installation

Prerequisites

Please specify required software and versions:
Python: 3.6 or higher
pip: Latest version

Installation Steps

1. Install from PyPI (Recommended)

bash
pip install wikipedia-mcp

2. Install via Smithery

bash
npx -y @smithery/cli install @Rudra-ravi/wikipedia-mcp --client claude

3. Using pipx (Recommended)

bash
sudo apt install pipx
pipx ensurepath
pipx install git+https://github.com/rudra-ravi/wikipedia-mcp.git

4. Using a virtual environment

bash
python3 -m venv venv
source venv/bin/activate
pip install git+https://github.com/rudra-ravi/wikipedia-mcp.git

5. From source

bash
git clone https://github.com/rudra-ravi/wikipedia-mcp.git
cd wikipedia-mcp
python3 -m venv wikipedia-mcp-env
source wikipedia-mcp-env/bin/activate
pip install -e .

Additional Resources