Labsco
RicardoCenci logo

WikiJS

โ˜… 7

from RicardoCenci

Search and retrieve content from a WikiJS knowledge base.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedAccount requiredAdvanced setup

WikiJS MCP Server

A Model Context Protocol (MCP) server that provides integration with WikiJS, allowing AI assistants to search and retrieve content from your WikiJS knowledge base.

Overview

This MCP server enables AI assistants to interact with WikiJS instances by providing tools to:

  • Search for pages by query string
  • Retrieve pages by ID
  • Retrieve pages by path and locale
  • Get all pages from the wiki

Getting a WikiJS API Key

  1. Log into your WikiJS instance as an administrator
  2. Go to Administration > API Access
  3. Create a new API key with appropriate permissions
  4. Copy the generated key to your .env file

Development

  1. Clone the repository:
git clone https://github.com/RicardoCenci/wikijs-mcp.git
cd wikijs-mcp
  1. Install dependencies:
npm install
  1. Copy the environment template and fill out its contents
cp env.example .env
  1. Build the project If you have make installed:
make build
  1. Deploy the WikiJS instance for testing
docker compose up -d

Environment Variables

VariableDescriptionRequiredAllowed ValuesDefault
WIKIJS_URLURL of your WikiJS instanceYes--
WIKIJS_API_KEYWikiJS API keyYes--
TRANSPORT_METHODThe transport methodNostdio, streamable-httpstdio
TRANSPORT_OPTIONS_CORS_ORIGINCors Origin (only on streamable-http)No-*
TRANSPORT_OPTIONS_CORS_HEADERSCors Headers, comma separated (only on streamable-http)No-Content-Type=mcp-session-id
TRANSPORT_OPTIONS_CORS_METHODSCors Methods, comma separated (only on streamable-http)No-GET,POST,OPTIONS
TRANSPORT_OPTIONS_SESSION_TIMEOUT_MSSession timeout (only on streamable-http)No-60000