git clone https://github.com/openclaw/skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/brucegutman/pipeworx-wikipedia" ~/.claude/skills/openclaw-skills-pipeworx-wikipedia && rm -rf "$T"
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/brucegutman/pipeworx-wikipedia" ~/.openclaw/skills/openclaw-skills-pipeworx-wikipedia && rm -rf "$T"
skills/brucegutman/pipeworx-wikipedia/SKILL.mdWikipedia
Search, summarize, and explore the structure of English Wikipedia articles.
Capabilities
search_wikipedia -- Full-text search across Wikipedia. Returns titles, text snippets, page IDs, and word counts. Useful for finding the right article before pulling its content.
get_article_summary -- The introductory extract for an article by title. Also returns the description, thumbnail URL, and desktop/mobile content links. This is the fastest way to get a concise answer from Wikipedia.
get_article_sections -- The table of contents for an article. Returns each section heading with its level, number, and anchor. Helpful for understanding the structure of long articles.
get_random_articles -- Fetch 1-10 random Wikipedia articles with their extracts. Good for serendipitous discovery or testing.
Example: summarize an article
curl -X POST https://gateway.pipeworx.io/wikipedia/mcp \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_article_summary","arguments":{"title":"Turing machine"}}}'
{ "mcpServers": { "wikipedia": { "url": "https://gateway.pipeworx.io/wikipedia/mcp" } } }