kiwix-mcp
Enables interaction with Kiwix HTTP servers to browse available ZIM library books, perform full-text searches across offline content, and retrieve articles as plain text.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@kiwix-mcpsearch for 'quantum physics' in the Wikipedia book"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
kiwix-mcp
MCP server and Python client library for Kiwix HTTP servers.
Compatibility
Tested against kiwix-tools (Debian bookworm package) and newer libkiwix-based deployments. Any standard kiwix-serve deployment should work.
Known quirks handled transparently:
kiwix-serve emits unescaped
&in OPDS cataloghrefattributesNewer servers require a book scope when the library spans multiple languages — the client returns a clear error with instructions in that case
Newer servers use a path-prefixed URL scheme (e.g.
/kiwix/content/book_slug) — slug and article URL handling adapts automatically
Related MCP server: ZimAgent
Tools
Tool | Description |
| List available ZIM books; optional title filter |
| Full-text search across all books or a specific book |
| Fetch an article as plain text by URL |
Installation
pip install kiwix-mcpOr with uv:
uv pip install kiwix-mcpUsage
stdio (Claude Desktop / Claude Code)
kiwix-mcp --base-url http://localhost:8080
# or
KIWIX_BASE_URL=http://localhost:8080 kiwix-mcpClaude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"kiwix": {
"command": "kiwix-mcp",
"args": ["--base-url", "http://localhost:8080"]
}
}
}Claude Code — add at user scope so it's available in all projects:
claude mcp add --scope user --transport http kiwix https://your-kiwix-mcp-host/mcp/SSE
kiwix-mcp --transport sse --base-url http://localhost:8080Then point your MCP client at http://localhost:8000/sse.
HTTP (streamable)
kiwix-mcp --transport streamable-http --base-url http://localhost:8080Then point your MCP client at http://localhost:8000/mcp.
CORS (browser-based clients)
When using HTTP transports with browser-based MCP clients (e.g. llama-server WebUI), CORS headers are added automatically. By default all origins are allowed.
To restrict allowed origins:
kiwix-mcp --transport streamable-http --base-url http://localhost:8080 \
--cors-allow-origins "http://localhost:3000,http://myapp.example.com"
# or
CORS_ALLOW_ORIGINS="http://localhost:3000" kiwix-mcp --transport streamable-http --base-url http://localhost:8080CORS has no effect on stdio transport.
Docker
docker run -e KIWIX_BASE_URL=http://your-kiwix-server:8080 \
-p 8000:8000 \
oscillatelabs/kiwix-mcpDefaults to streamable-http transport bound on 0.0.0.0:8000. Override with env vars:
docker run \
-e KIWIX_BASE_URL=http://your-kiwix-server:8080 \
-e TRANSPORT=sse \
-e HOST=0.0.0.0 \
-e PORT=8000 \
-e CORS_ALLOW_ORIGINS="http://localhost:3000" \
-p 8000:8000 \
oscillatelabs/kiwix-mcpOptions
Flag | Default | Env |
| — |
|
|
|
|
|
|
|
|
|
|
|
|
|
Client library
from kiwix_client import KiwixClient, strip_html
c = KiwixClient("http://localhost:8080")
# List all books
books = c.list_books()
# Filter by title keyword
books = c.list_books(q="wikipedia")
# Search
sr = c.search("query")
# Search within a specific book
sr = c.search("query", books="devdocs_en_rust_2025-10")
# Fetch article as plain text
html = c.fetch_article(sr.results[0].url)
plain = strip_html(html)How the Kiwix API works
kiwix-serve exposes three HTTP surfaces used by this client:
OPDS catalog (
/catalog/v2/entries) — Atom XML with book metadata and slugs; supports?q=,?count=,?start=paramsFull-text search (
/search?pattern=…&books.name=…&start=…) — HTML; 25 results/page;books.name=scopes to a specific ZIM slugArticles (
/{book_slug}/A/{path}) — HTML; usestrip_htmlfor plain text
There is no JSON API. Full-text search requires ZIMs built with _ftindex:yes — not all ZIMs include it. Servers with books spanning multiple languages require a book scope for any search request.
Testing
# Install with dev dependencies
pip install -e ".[dev]"
# Run the test suite (no network required)
pytestMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityBmaintenanceAn MCP server that provides offline access to ZIM file archives, including Wikipedia, medical knowledge, and maps. It dynamically exposes tools like search, article retrieval, and driving route planning based on available ZIM files.4MIT
- Alicense-qualityBmaintenanceEnables offline CRUD and semantic search on Wikipedia ZIM archives via MCP tools for reading, writing, editing, deleting, and searching articles.1MIT
- Alicense-qualityBmaintenanceMCP server for reading and searching ZIM archives, optimized for single-user deployments with a persistent Wikipedia archive.MIT
- Alicense-qualityAmaintenanceMCP server for searching and reading Wikipedia articles, including summaries, full text, targeted sections, nearby pages, and language editions.5621Apache 2.0
Related MCP Connectors
MCP server for Project Gutenberg — 75,000+ public-domain ebooks with full plain-text retrieval.
MCP server for accessing curated awesome list documentation
Remote MCP server for full read/write access to a Zotero library
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/OscillateLabsLLC/kiwix-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server