An MCP server that connects Claude to your [Wiki.js](https://js.wiki/) instance. Search, read, create, update, move, and delete wiki pages through
Wikijs becomes available to MCP clients through the wikijs mcp server. An MCP server that connects Claude to your Wiki.js instance. Search, read, create, update, move, and delete wiki pages through natural language.
An MCP server that connects Claude to your Wiki.js instance. Search, read, create, update, move, and delete wiki pages through natural language.
Once connected, the assistant can call these 12 tools directly:
wiki_search — Full-text search across all wiki pageswiki_get_page — Get a page by path or ID, with optional metadata_only and include_render modeswiki_list_pages — List pages with optional tag filtering and sort orderwiki_get_tree — Get the hierarchical folder/page tree structurewiki_create_page — Create a new pagewiki_update_page — Update a page via full replacement or surgical find-and-replace (edits)wiki_move_page — Move a page to a new path and/or localewiki_delete_page — Delete a pagewiki_list_tags — List all tags used across the wikiwiki_get_site_info — Get wiki site metadata (title, description, host)wiki_get_history — Get page edit history with paginationwiki_get_version — Retrieve a specific historical version of a pageThe server is distributed via PyPI as wikijs-mcp, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.
Before the server will start you need to supply 2 environment variables: WIKIJS_URL, WIKIJS_API_KEY. Keep credentials in your client's env block or a secrets manager rather than committing them.
Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Wikijs sits in that group, and the shape of its toolset — wiki_search, wiki_get_page, wiki_list_pages among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.
| Tool | What it does |
|---|---|
| wiki_search | Full-text search across all wiki pages |
| wiki_get_page | Get a page by path or ID, with optional metadata_only and include_render modes |
| wiki_list_pages | List pages with optional tag filtering and sort order |
| wiki_get_tree | Get the hierarchical folder/page tree structure |
| wiki_create_page | Create a new page |
| wiki_update_page | Update a page via full replacement or surgical find-and-replace (edits) |
| wiki_move_page | Move a page to a new path and/or locale |
| wiki_delete_page | Delete a page |
| wiki_list_tags | List all tags used across the wiki |
| wiki_get_site_info | Get wiki site metadata (title, description, host) |
| wiki_get_history | Get page edit history with pagination |
| wiki_get_version | Retrieve a specific historical version of a page |
{
"mcpServers": {
"wikijs": {
"command": "uvx",
"args": ["wikijs-mcp"],
"env": {
"WIKIJS_URL": "your-value",
"WIKIJS_API_KEY": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| WIKIJS_URL | Endpoint or connection string the server talks to. | Yes |
| WIKIJS_API_KEY | Credential the server authenticates with. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.