light_wikipedia_cli docs

← Back to main

Getting started

Download

Head to the latest Release and download the binary for your OS.

Requirements

Build

git clone https://github.com/felixscode/light_wikipedia_cli
cd light_wikipedia_cli
make build

This produces two binaries under bin/:

Add bin/ to your PATH, or invoke the binaries directly.

Quick start

# Random article summary
wikipedia

# Search and read
wikipedia --search "Go programming language"

# Interactive TUI
wikipedia --tui

# Start the mcp server
wikipedia --mcp 

Building this documentation site

The docs you are reading are generated from Markdown in doc/content by the docgen tool:

make docs

Output is written to doc/public and can be served by any static file server:

python3 -m http.server -d doc/public 8000