MCP server providing LLMs read-only access to PmWiki content via SSE transport for AI assistants
2.0K
A Model Context Protocol (MCP) server that provides LLMs with read-only access to PmWiki content through a standardized interface.
This Docker image runs an MCP server that exposes your PmWiki pages via the Model Context Protocol using Server-Sent Events (SSE) transport. It enables AI assistants like Claude to read, search, and interact with your wiki content.
pmwiki:// URIsdocker 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:latest
Replace /path/to/your/wiki.d with the actual path to your PmWiki data directory.
version: '3.8'
services:
pmwiki-mcp:
image: kcofoni/pmwiki-mcp:latest
container_name: pmwiki-mcp-server
ports:
- "3000:3000"
volumes:
- /path/to/your/wiki.d:/wiki_data:ro
environment:
- WIKI_DIR=/wiki_data
restart: unless-stopped
Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"pmwiki": {
"command": "mcp-proxy",
"args": [
"--transport=sse",
"http://localhost:3000/sse"
]
}
}
}
Replace localhost with your Docker host IP if running remotely.
search_wiki: Full-text search across all wiki pages
query (required): Text to search forcase_sensitive (optional): Enable case-sensitive search (default: false)read_page: Read complete page content
page_name (required): Page name (e.g., Main.HomePage)list_pages: List all available wiki pages
group (optional): Filter by wiki groupWIKI_DIR: Path to PmWiki's wiki.d directory (default: /wiki_data):ro) by default# Check server logs
docker logs pmwiki-mcp-server
# Test SSE connection
curl -N http://localhost:3000/sse
MIT License - See LICENSE for details
Note: This server provides read-only access to your PmWiki content. It does not modify or write to your wiki files.
Content type
Image
Digest
sha256:9296a3c91…
Size
129 MB
Last updated
6 months ago
docker pull kcofoni/pmwiki-mcp