wikipedia-mcp-server
Tools
Six tools for working with Wikipedia across all language editions:
Tool | Description |
| Full-text search across Wikipedia, returning ranked results with plain-text snippets and page IDs. |
| Lead-section summary for any article — plain text, Wikidata QID, description, thumbnail URL, and page type. |
| Full article or a targeted section as clean plain text, with section markers preserved. |
| Table of contents with |
| Geotagged Wikipedia articles within a radius of a WGS 84 coordinate, sorted by distance. |
| All language editions available for an article, with titles and URLs. |
wikipedia_search
Search Wikipedia articles by full-text query.
Returns ranked results with plain-text snippets (HTML stripped), page IDs, and word counts
Use when the exact article title is unknown or to discover multiple articles on a topic
Page beyond the first result page with
offset; the enrichmentnextOffsetsignals more results remain (pass it back asoffset)Supports all Wikipedia language editions via the
languageparameter
wikipedia_get_summary
Fetch the lead-section summary for a Wikipedia article.
Returns the 2–4 paragraph intro, Wikidata QID for cross-referencing, short description, and thumbnail URL
Surfaces
page_type: "disambiguation"— a signal to follow up withwikipedia_searchusing a more specific queryRedirect pages followed automatically
Right tool for 90% of encyclopedic lookups
wikipedia_get_article
Fetch article content as clean plain text.
Without
section_index: returns the full article with== Section ==markers — unless it exceedsWIKIPEDIA_ARTICLE_OVERFLOW_BYTES(default 80 KB), in which case it returns a compact section outline (truncated: true) pointing towikipedia_get_sectionsplus asection_indexreadWith
section_index(fromwikipedia_get_sections): returns that section together with every subsection nested under it, each heading above its own bodyData tables and figures are omitted from both paths, so a section whose body is entirely a data table returns its heading and little else. Tables used only for layout — multi-column lists, succession boxes — keep their content
Page furniture is omitted too: maintenance banners, sister-project and library-resource boxes, portal bars, and spoken-article notices. Hatnotes are kept — they name the article to read next
Redirect pages followed automatically
wikipedia_get_sections
Fetch the table of contents for a Wikipedia article.
Returns section titles, heading levels, section numbering (e.g. "2.1"), and
section_indexvaluessection_indexis the integer to pass towikipedia_get_articlefor targeted readsCall this before
wikipedia_get_articlewhen only a specific section is neededRedirect pages followed automatically
wikipedia_search_nearby
Find Wikipedia articles about places near a geographic coordinate.
Results sorted ascending by distance in meters
Only articles with geographic coordinates in their Wikidata record are returned
Radius capped at 10,000 meters; up to 50 results per call
wikipedia_get_languages
List language editions available for a Wikipedia article.
Returns each edition's language code, tool-usable subdomain code (
edition_code), article title, and URLPass
edition_codeas thelanguageparameter on other tools — it can differ fromlanguage_code(e.g.gswvsals)Use for cross-language research or to discover a non-English title before switching editions
Features
Built on @cyanheads/mcp-ts-core:
Declarative tool definitions — single file per tool, framework handles registration and validation
Unified error handling — handlers throw, framework catches, classifies, and formats
Pluggable auth:
none,jwt,oauthSwappable storage backends:
in-memory,filesystem,Supabase,Cloudflare KV/R2/D1Structured logging with optional OpenTelemetry tracing
STDIO and Streamable HTTP transports
Wikipedia-specific:
Dual API integration — MediaWiki REST API (
/api/rest_v1/) for summaries, Action API (/w/api.php) for search, full text, sections, geo search, and language linksRetry and backoff on all requests;
User-Agentheader per Wikimedia API policyBoth read paths render to the same plain-text shape —
== Heading ==markers, one list item per line — the full article from Action API extracts, a section from the parser's own HTML for that section. A section read additionally keeps code-sample indentation and the lists inside layout tables, neither of which the extract carriesPer-call
languageparameter on every tool — all Wikipedia language editions accessible in a single sessionLanguage validation against a live edition registry built from the MediaWiki
action=sitematrixendpoint (cached 24h) — catches structurally valid but nonexistent editions before they cause timeouts
Agent-friendly output:
page_typefield on summaries discriminates article / disambiguation / redirect — no string parsing neededwikibase_item(Wikidata QID) on summaries enables direct cross-referencing with wikidata-mcp-serversection_indexon table-of-contents entries links directly to the targeted-read parameter onwikipedia_get_articleRecovery hints on every error type — callers get actionable next steps (e.g., "use
wikipedia_searchto find the correct title")
Getting started
Add the following to your MCP client configuration file.
{
"mcpServers": {
"wikipedia-mcp-server": {
"type": "stdio",
"command": "bunx",
"args": ["@cyanheads/wikipedia-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}Or with npx (no Bun required):
{
"mcpServers": {
"wikipedia-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@cyanheads/wikipedia-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}Or with Docker:
{
"mcpServers": {
"wikipedia-mcp-server": {
"type": "stdio",
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "MCP_TRANSPORT_TYPE=stdio",
"ghcr.io/cyanheads/wikipedia-mcp-server:latest"
]
}
}
}For Streamable HTTP, set the transport and start the server:
MCP_TRANSPORT_TYPE=http MCP_HTTP_PORT=3010 bun run start:http
# Server listens at http://localhost:3010/mcpPrerequisites
Bun v1.3.0 or higher (or Node.js v24+).
No API keys required — Wikipedia's API is public.
Installation
Clone the repository:
git clone https://github.com/cyanheads/wikipedia-mcp-server.gitNavigate into the directory:
cd wikipedia-mcp-serverInstall dependencies:
bun installConfigure environment (optional):
cp .env.example .env
# edit .env if you want to customize WIKIPEDIA_USER_AGENT or loggingConfiguration
Variable | Description | Default |
| User-Agent header sent with every Wikimedia API request. Customize for your deployment. |
|
| Optional single-instance override. Unset (default): compose per-language hosts, | (unset) |
| Byte budget above which a full-article read ( |
|
| Transport: |
|
| Port for HTTP server. |
|
| HTTP session mode: |
|
| Auth mode: |
|
| Log level (RFC 5424). |
|
| Directory for log files (Node.js only). |
|
| Enable OpenTelemetry instrumentation (spans, metrics, completion logs). |
|
See .env.example for the full list of optional overrides.
Running the server
Local development
Build and run:
# One-time build bun run rebuild # Run the built server bun run start:stdio # or bun run start:httpRun checks and tests:
bun run devcheck # Lint, format, typecheck, security bun run test # Vitest test suite bun run lint:mcp # Validate MCP definitions against spec
Docker
docker build -t wikipedia-mcp-server .
docker run --rm -p 3010:3010 wikipedia-mcp-serverThe Dockerfile defaults to HTTP transport, stateless session mode, and logs to /var/log/wikipedia-mcp-server. OpenTelemetry peer dependencies are installed by default — build with --build-arg OTEL_ENABLED=false to omit them.
Project structure
Directory | Purpose |
|
|
| Server-specific environment variable parsing and validation with Zod. |
| Tool definitions ( |
| WikipediaService — REST API + Action API client with retry/backoff and language validation. |
| Unit and integration tests mirroring |
Development guide
See CLAUDE.md for development guidelines and architectural rules. The short version:
Handlers throw, framework catches — no
try/catchin tool logicUse
ctx.logfor request-scoped logging,ctx.statefor tenant-scoped storageRegister new tools in
src/mcp-server/tools/definitions/index.tsWrap external API calls: validate raw → normalize to domain type → return output schema; never fabricate missing fields
Contributing
Issues and pull requests are welcome. Run checks and tests before submitting:
bun run devcheck
bun run testLicense
Apache-2.0 — see LICENSE for details.