┌──────────────┐ stdio/JSON-RPC ┌──────────────────┐ HTTPS ┌──────────────────┐
│ AI Agent │ ◄──────────────────────► │ Wikipedia MCP │ ◄────────────► │ Wikipedia REST │
│ (Claude, etc)│ │ Server (Python) │ │ API (Free, No │
└──────────────┘ └──────────────────┘ │ Auth Required) │
└──────────────────┘
Tools
wiki_search
Search Wikipedia by natural language query. Returns titles, snippets with highlights, word counts, and direct URLs.
wiki_get_article
Get full article text as markdown with section headings. Control with max_sections for large articles.
wiki_get_summary
Quick 2-5 sentence extract plus metadata. Perfect for fact-checking and trivia.
wiki_get_categories
Navigate the knowledge graph — all categories an article belongs to, filtered for relevance.
wiki_get_languages
Available translations with language codes, native names, and full URLs. 300+ languages.
wiki_random
Serendipitous discovery — random article with summary. Great for exploration.
wiki_page_info
Page metadata: size, last modified, content model, redirect status, preview.
Example Usage
# Agent asks: "What's the capital of Bhutan?"
→ wiki_get_summary("Thimphu")
→ "Thimphu is the capital and largest city of Bhutan..."
# Agent asks: "Find articles about quantum computing"
→ wiki_search("quantum computing")
→ 12 results: "Quantum computing", "Timeline of quantum computing..."
# Agent asks: "What categories is Python in?"
→ wiki_get_categories("Python (programming language)")
→ ["Programming languages", "Class-based programming languages", ...]
# Agent asks: "Show me a random article"
→ wiki_random()
→ 🎲 "Hygrophorus agathosmus" — A species of fungus in the genus...
Pricing
Free
- ✅ 50 queries/month
- ✅ All 7 tools
- ✅ 300+ languages
- ✅ Markdown + JSON
- ✅ Community support
Pro
- ✅ Unlimited queries
- ✅ All 7 tools
- ✅ 300+ languages
- ✅ Priority support
- ✅ Early access to new tools
Enterprise
- ✅ Everything in Pro
- ✅ Custom SLA
- ✅ Dedicated support
- ✅ On-prem deployment
- ✅ Custom integrations
FAQ
Is this really free? No API key?
Yes. Wikipedia's API is public and requires no authentication. The free tier gives you 50 queries/month through this MCP server.
Which clients does it work with?
Claude Desktop, Cursor, VS Code, Windsurf, Continue.dev, and any MCP-compatible client. Three-line JSON config to add.
How is this different from hitting the Wikipedia API directly?
Agent-friendly markdown output, automatic truncation with guidance, category filtering, error recovery with actionable next steps, and full MCP protocol compliance.
Which languages are supported?
300+ Wikipedia language editions from Afrikaans to Zulu. Use the language parameter on any tool (e.g., language="ja" for Japanese).