{
"mcpServers": {
"kiwix-wiki-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 164 days ago. 13 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
A Model Context Protocol server for searching and analyzing arXiv papers
📖 MCP server for fetch deepwiki.com and get latest knowledge in Cursor and other Code Editors
Model Context Protocol (MCP) Server to connect your AI with any MediaWiki
Open source implementation and extension of Google Research’s PaperBanana for automated academic figures, diagrams, and research visuals, expanded to new domains like slide generation.
MCP Security Weekly
Get CVE alerts and security updates for Kiwix Wiki Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This is a Model Context Protocol (MCP) server that provides access to offline Wikipedia and other content through Kiwix.
Kiwix Server: You need to have Kiwix server running locally with ZIM files.
# On Ubuntu/Debian
sudo apt-get install kiwix-tools
# On macOS with Homebrew
brew install kiwix-tools
# Or download from https://www.kiwix.org/en/downloads/
ZIM Files: Download offline content (like Wikipedia) in ZIM format from https://library.kiwix.org/
# Download a small version of Wikipedia (English)
wget https://library.kiwix.org/content/wikipedia_en_top/2024-01/wikipedia_en_top_2024-01.zim
Start Kiwix Server:
kiwix-serve --port=8080 --library wikipedia_en_top_2024-01.zim
The server will be accessible at http://localhost:8080
npm install
npm run build
npm start
Or run directly:
node build/main.js
search_wikiSearch for articles in the offline wiki.
Parameters:
query (required): Search query for wiki articleslibrary (optional): Library ID to search inlimit (optional): Maximum number of results (default: 10, max: 50)Example:
{
"query": "artificial intelligence",
"limit": 5
}
get_articleGet the full content of a specific wiki article.
Parameters:
url (required): URL or path to the wiki articlelibrary (optional): Library IDExample:
{
"url": "/A/Artificial_intelligence"
}
list_librariesList available offline libraries in Kiwix.
Parameters: None
By default, the server connects to Kiwix at http://localhost:8080. You can modify the KIWIX_SERVER_BASE constant in main.ts to change this.
Add this to your MCP client configuration:
{
"mcpServers": {
"kiwix-wiki": {
"command": "node",
"args": ["/path/to/your/project/build/main.js"]
}
}
}
ISC License