Install
openclaw skills install @evanfoglia/wikipediaAccess Wikipedia via MCP — search articles, get summaries, random facts, dinosaur facts, and today's featured article. Multi-language support (10 wikis). Great for research, content hooks, and general knowledge lookups.
openclaw skills install @evanfoglia/wikipediaAccess Wikipedia via Model Context Protocol (MCP). No API key required.
| Tool | Description |
|---|---|
search | Search Wikipedia for articles |
summary | Get article summary + image by title |
random | Random Wikipedia article |
did_you_know | Random "Did You Know" fact |
dino_fact | Dinosaur/prehistory fact (specific species or random) |
featured_article | Today's Wikipedia Featured Article |
All tools accept an optional lang parameter (default en; supported: en, de, es, fr, ja, zh, pt, it, ru, nl).
pip install -r requirements.txt
(Requires Python 3.10+ and requests>=2.28.0)
The MCP server lives at <install-dir>/src/server.py.
ls ~/.openclaw/workspace/skills/wikipedia/src/server.py
Add to ~/.openclaw/workspace/config/mcporter.json:
{
"mcpServers": {
"wikipedia": {
"command": "python3",
"args": ["<path-to>/src/server.py"]
}
}
}
Replace <path-to> with the actual install location from step 2.
mcporter call wikipedia search --args '{"query": "velociraptor", "limit": 5}'
mcporter call wikipedia search --args '{"query": "velociraptor", "limit": 5}'
mcporter call wikipedia summary --args '{"title": "Tyrannosaurus"}'
mcporter call wikipedia dino_fact --args '{"species": "Spinosaurus"}'
mcporter call wikipedia dino_fact
mcporter call wikipedia did_you_know
mcporter call wikipedia featured_article
mcporter call wikipedia summary --args '{"title": "Berlin", "lang": "de"}'
Uses Wikipedia's free public REST API — no API key required.
/api/rest_v1/...)wikipedia-mcp/1.1.0 per Wikipedia API etiquettedino_fact falls back to a random species if the requested one isn't found (instead of erroring)featured_article returns today's curated Featured Article — great for daily content hookslang to any tool to query de/es/fr/ja/zh/pt/it/ru/nl Wikipedia