pmwiki-mcp
Verified Safeby kcofoni
Overview
Provides a Model Context Protocol (MCP) server for LLMs to read and search PmWiki content.
Installation
docker run -d --name pmwiki-mcp-server -p 3000:3000 -v /path/to/your/wiki.d:/wiki_data:ro -e WIKI_DIR=/wiki_data kcofoni/pmwiki-mcp:latestEnvironment Variables
- WIKI_DIR
Security Notes
The server design is secure by default due to read-only mounting of the PmWiki 'wiki.d' directory, preventing any write operations to the wiki files. There are no 'eval' statements or other direct code injection vulnerabilities. Path traversal within 'read_page' is mitigated by replacing '/' with '.' and 'os.path.join' appending to a controlled directory, making it highly unlikely for an attacker to access files outside the mounted volume.
Similar Servers
DevDocs
DevDocs is a web crawling and content extraction platform designed to accelerate software development by converting documentation into LLM-ready formats for intelligent data querying and fine-tuning.
1xn-vmcp
An open-source platform for composing, customizing, and extending multiple Model Context Protocol (MCP) servers into a single logical, virtual MCP server, enabling fine-grained context engineering for AI workflows and agents.
obs-mcp
An MCP (Model Context Protocol) server enabling LLMs to interact with a Prometheus monitoring instance for querying metrics.
memory-mcp-server
Provides long-term memory and context storage/retrieval for Large Language Models (LLMs) via an API, adhering to the Model Context Protocol (MCP).