Wiki.js MCP Server
Provides tools for managing pages in a Wiki.js instance, including listing, getting, searching, creating, updating, and deleting pages.
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., "@Wiki.js MCP Serversearch pages for installation guide"
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.
wikijs-mcp
MCP (Model Context Protocol) server for Wiki.js that exposes page management through Wiki.js's GraphQL API.
Tools
Tool | Description |
| List all pages (sortable by title, path, ID, date) |
| Get full content and metadata of a page by ID |
| Browse the page/folder hierarchy |
| Full-text search across pages |
| Create a new page (markdown, HTML, AsciiDoc) |
| Update a page's content, title, or metadata |
| Delete a page by ID |
Related MCP server: WikiJS MCP Server
Prerequisites
A running Wiki.js instance (v2.x)
An API key — create one at Administration > API Access in your Wiki.js admin panel
The API key needs appropriate permission scopes for pages (read/write/manage)
Setup
cp .env.example .env
# Edit .env with your Wiki.js URL and API keyOption A: Local (Node.js >=18)
npm install
npm run build
npm startFor development:
npm run devOption B: Docker
docker compose build
docker compose up -dClaude Code Integration
Add to your Claude Code MCP config (.claude/settings.json or project settings):
{
"mcpServers": {
"wikijs": {
"command": "node",
"args": ["d:/projects/ai/wikijs-mcp/dist/index.js"],
"env": {
"WIKIJS_URL": "https://wiki.example.com",
"WIKIJS_API_KEY": "your-api-key"
}
}
}
}Or using npx tsx for development without building:
{
"mcpServers": {
"wikijs": {
"command": "npx",
"args": ["tsx", "d:/projects/ai/wikijs-mcp/src/index.ts"],
"env": {
"WIKIJS_URL": "https://wiki.example.com",
"WIKIJS_API_KEY": "your-api-key"
}
}
}
}Wiki.js API Reference
This server uses the Wiki.js GraphQL API. You can explore the full schema interactively at https://your-wiki.example.com/graphql when logged in as admin.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/mfic/wikijs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server