Back to Browse

Wikijs MCP Server

by Ni C
Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

Search, read and edit Wiki.js pages, and manage its assets, users, groups and comments

About

Search, read and edit Wiki.js pages, and manage its assets, users, groups and comments

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry. Trust signals: trusted author (18/18 approved).

4 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

What You'll Need

Set these up before or after installing:

Base URL of the Wiki.js instance, e.g. https://wiki.example.comOptional

Environment variable: WIKIJS_URL

API key from Administration → API Access. WIKIJS_API_KEY is accepted as an aliasRequired

Environment variable: WIKIJS_TOKEN

Locale assumed by page tools that are not given one; part of a page's identity (default: en)Optional

Environment variable: WIKIJS_LOCALE

Set to true to register only the read tools (default: false)Optional

Environment variable: WIKIJS_READ_ONLY

Comma-separated page path prefixes the write tools are confined to, matched by path segmentOptional

Environment variable: WIKIJS_ALLOWED_PATHS

Comma-separated tool names or list_* prefixes to register; 'essential' selects a curated preset (default: all tools)Optional

Environment variable: WIKIJS_ALLOW_TOOLS

Comma-separated tool names or list_* prefixes to remove from whatever the allow list leftOptional

Environment variable: WIKIJS_DENY_TOOLS

Set to true to accept a self-signed certificate from a self-hosted instance (default: false)Optional

Environment variable: WIKIJS_INSECURE_TLS

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-ni-c-wikijs-mcp": {
      "env": {
        "WIKIJS_URL": "your-wikijs-url-here",
        "WIKIJS_TOKEN": "your-wikijs-token-here",
        "WIKIJS_LOCALE": "your-wikijs-locale-here",
        "WIKIJS_READ_ONLY": "your-wikijs-read-only-here",
        "WIKIJS_DENY_TOOLS": "your-wikijs-deny-tools-here",
        "WIKIJS_ALLOW_TOOLS": "your-wikijs-allow-tools-here",
        "WIKIJS_INSECURE_TLS": "your-wikijs-insecure-tls-here",
        "WIKIJS_ALLOWED_PATHS": "your-wikijs-allowed-paths-here"
      },
      "args": [
        "-y",
        "@ni-c/wikijs-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

wikijs-mcp

CI npm version npm downloads node license container docs sponsor

A Model Context Protocol (MCP) server for Wiki.js, the self-hosted wiki that keeps its pages as markdown and exposes everything through one GraphQL endpoint.

Lets MCP clients like Claude Code, Claude Desktop or Codex search, read and edit wiki pages — and, if you let them, manage its assets, comments, users, groups and maintenance jobs.

Sixty-two tools is the ceiling, not the floor: WIKIJS_ALLOW_TOOLS=essential registers a curated seven instead, and a model picks the right tool far more reliably from seven than from sixty-two — see choosing which tools load.

Requirements

  • Node.js ≥ 22
  • A running Wiki.js instance and an API token

Configuration

VariableRequiredDescription
WIKIJS_URLyesBase URL of the wiki, e.g. https://wiki.example.com. A trailing /graphql is trimmed
WIKIJS_TOKENyesAPI key from Administration → API Access. WIKIJS_API_KEY is accepted as an alias
WIKIJS_LOCALEnoLocale assumed by page tools that are not given one (default en)
WIKIJS_READ_ONLYnotrue registers only the read tools
WIKIJS_ALLOWED_PATHSnoComma-separated page path prefixes the write tools are confined to, e.g. docs,team/notes
WIKIJS_ALLOW_TOOLSnoComma-separated tool names, list_* prefixes, or essential for a curated preset
WIKIJS_DENY_TOOLSnoSame syntax; removed from whatever WIKIJS_ALLOW_TOOLS left
WIKIJS_INSECURE_TLSnotrue accepts self-signed certificates (scoped to this connection)

The locale is part of a page's identity, not a display preference: the same path under en and de is two different pages. On a wiki set up in another language, set WIKIJS_LOCALE or every lookup by path answers "not found". list_locales reports what is installed.

API keys are administrative. Wiki.js offers "full access" or a group, and a full-access key can rewrite every page and every account. WIKIJS_READ_ONLY, WIKIJS_ALLOWED_PATHS and the key's own group permissions are three independent ways to narrow that — see SECURITY.md.

Use https://. Over plain http the token travels unencrypted; the server prints a warning unless the host is local. For self-signed certificates prefer a proper internal CA over WIKIJS_INSECURE_TLS.

Without credentials the server still starts and lists its tools (so registries and inspectors can introspect it), but every call fails with setup instructions instead of reaching the API.

Choosing which tools load

WIKIJS_ALLOW_TOOLS and WIKIJS_DENY_TOOLS take comma-separated tool names; a trailing * matches a whole family. essential is a curated preset — search_pages, grep_pages, get_page, list_pages, get_page_tree, create_page and update_page, which is what it takes to find, read and write a wiki page end to end — marked as such in the tool reference.

WIKIJS_ALLOW_TOOLS=essential
WIKIJS_ALLOW_TOOLS=get_page,search_pages,list_*
WIKIJS_DENY_TOOLS=delete_*,purge_page_history,set_api_state

An entry that matches no tool aborts startup and names it, so a typo cannot silently hide a tool — an absent tool is not something anyone traces back to an environment variable. A filtered tool is never registered, so it is absent from tools/list and unknown to tools/call alike, exactly like a write tool under WIKIJS_READ_ONLY.

If you run several of these servers at once, mcp-hub is the other answer — its /hub endpoint replaces every server's tools with six meta-tools.

Confining writes to part of the wiki

WIKIJS_ALLOWED_PATHS limits the writing page and asset tools to a set of path prefixes. Reads stay unrestricted, deliberately: a scope on reads turns a wiki into a confusing half-wiki, and the API key's own page rules are the right place to hide pages outright — they hide them from the web UI too.

WIKIJS_ALLOWED_PATHS=docs,team/notes

Matching is by path segment, so docs covers docs/setup and not docs-archive/old. move_page checks both ends, so a page cannot be moved out of the allowed area or into a protected one.

Asset writes are checked against the asset folder tree, which is a separate namespace. The operations that cannot be confined to a prefix at all — the instance-wide maintenance tools, the tag tools, and comment edits, because Wiki.js does not say which page a comment is on — refuse while the variable is set rather than making a silent exception.

Installation

Claude Code

claude mcp add wikijs-mcp -- npx -y @ni-c/wikijs-mcp

Claude Desktop

{
  "mcpServers": {
    "wikijs-mcp": {
      "command": "npx",
      "args": ["-y", "@ni-c/wikijs-mcp"],
      "env": {
        "WIKIJS_URL": "https://wiki.example.com",
        "WIKIJS_TOKEN": "…"
      }
    }
  }
}

Codex

[mcp_servers.wikijs-mcp]
command = "npx"
args = ["-y", "@ni-c/wikijs-mcp"]
env = { WIKIJS_URL = "https://wiki.example.com", WIKIJS_TOKEN = "…" }

Docker

docker run --rm -i \
  -e WIKIJS_URL=https://wiki.example.com \
  -e WIKIJS_TOKEN=… \
  ghcr.io/ni-c/wikijs-mcp

Tools

62 tools. ★ marks the essential preset; ⚠ marks a tool that needs a confirmation token.

ToolDescription
list_pages★ Lists pages with their metadata, newest first by default.
get_page★ Reads one page, addressed by page_id or by path plus locale.
search_pages★ Full-text search — but read this first: on a default Wiki.js the search engine is "Database - Basic", which only indexes page titles and descriptions, NOT the text inside pages.
grep_pages★ Searches the actual text of pages with a regular expression, by fetching them and matching locally.
get_page_tree★ Lists the pages and folders directly under a path — the structural view a wiki has and a search does not.
list_page_linksReturns every page together with the internal links it contains — the wiki’s link graph for one locale.
create_page★ Creates a page.
update_page★ Changes a page.
move_pageMoves a page to another path, another locale, or both.
delete_page⚠ Deletes a page and its history.
convert_page_editorChanges the storage format of a page.
list_page_historyLists the stored versions of a page, newest first, with who changed what and when.
get_page_versionReturns a single historical version of a page, including its full body as it was then.
diff_page_versionsReturns a unified diff between two versions of a page — or between one version and the page as it is now, if to_version is omitted.
get_page_conflictReturns the version of a page that is newer than the one you read — what update_page points at when it refuses to write.
restore_page_versionRolls a page back to a stored version.
list_tagsEvery tag in the wiki, with its display title and when it was last used.
search_tagsFinds tags matching a fragment.
update_tagChanges a tag’s name or display title across every page carrying it.
delete_tag⚠ Removes a tag from the wiki and from every page that carries it.
list_assetsLists the images and files in one asset folder.
list_asset_foldersLists the folders directly under an asset folder.
upload_assetUploads an image or file to an asset folder, so it can be embedded in a page.
create_asset_folderCreates a folder in the asset store.
rename_assetRenames an asset.
delete_asset⚠ Deletes an asset permanently.
list_commentsReturns the comments on one page, addressed by path and locale — not by page id, which is the one place Wiki.js asks for the path instead.
get_commentReturns a single comment by id, with its source and its rendered HTML.
create_commentPosts a comment on a page, optionally as a reply to another.
update_commentReplaces the body of a comment.
delete_comment⚠ Removes a comment permanently.
list_usersLists the wiki’s user accounts.
search_usersFinds users by name or email.
get_userFull detail for one account, including its group memberships and whether two-factor authentication is active.
create_userCreates an account.
update_userChanges an account’s details or its group membership.
delete_user⚠ Removes an account.
set_user_activeSwitches an account on or off.
verify_userMarks an account’s email as verified, which is otherwise done by the user clicking a link.
set_user_tfaSwitches an account’s second factor.
reset_user_passwordStarts Wiki.js’ own password reset for a local account, which emails the user a link.
list_groupsLists the wiki’s groups with how many users each has.
get_groupReturns one group with its global permissions, its page rules and its members.
create_groupCreates an empty group.
update_groupReplaces a group’s name, permissions and page rules wholesale — this is not a partial update, and omitting a rule deletes it.
delete_group⚠ Removes a group.
assign_user_to_groupAdds one account to one group, leaving its other memberships alone — the additive counterpart to update_user’s groups list.
unassign_user_from_groupTakes one account out of one group.
get_site_infoVersion, database, host summary and the site’s own title and description, plus totals for pages, users, groups and tags.
list_localesWhich locales are installed and which one is the default.
get_navigation_treeThe sidebar navigation as configured, per locale.
list_search_enginesWhich search engine this wiki uses.
list_api_keysLists the wiki’s API keys with their expiry and whether they are revoked, plus whether API access is switched on at all.
list_storage_targetsThe configured storage backends — git mirrors, S3 buckets, local file dumps — with their sync status and last error.
revoke_api_key⚠ Revokes an API key immediately and for good — Wiki.js has no way to un-revoke one.
set_api_state⚠ Switches Wiki.js’ whole API on or off.
render_pageForces Wiki.js to regenerate one page’s HTML from its source.
flush_page_cacheDrops Wiki.js’ rendered-page cache for the whole wiki.
rebuild_page_treeRecomputes the folder structure Wiki.js derives from page paths.
rebuild_search_indexReindexes every page in the active search engine.
purge_page_history⚠ Deletes stored page versions older than a cutoff, across the whole wiki.
migrate_pages_locale⚠ Moves all pages from one locale to another, across the whole wiki.

The full reference, with every parameter, is at wikijs-mcp.ni-c.de/reference/tools.

Two things worth knowing before you use search_pages

Wiki.js' default search engine does not index page content. "Database - Basic" matches titles and descriptions only, so searching for a phrase written inside a page returns nothing at all. search_pages reports which engine is active and says so; grep_pages fetches pages and matches their text locally, which is slower and actually finds things. Switching the wiki to the PostgreSQL or Elasticsearch engine and running rebuild_search_index fixes it properly.

update_page refuses to overwrite somebody else's edit. It compares the page against the moment you read it, not against its own read a millisecond earlier, so an edit saved from the web UI while the model was thinking is caught rather than silently discarded. get_page_conflict shows the newer version; force: true overwrites on purpose.

Safety

  • Destructive and administrative tools are two-step. The first call returns a short-lived confirmation token bound to the exact target; only a second call carrying that token performs the operation. A model cannot satisfy this gate on its own. The binding includes everything that decides what is touched — a token for migrate_pages_locale from de to en will not run en to de.
  • Confirmation prompts never quote content from Wiki.js. Page titles and descriptions are written by anyone with edit rights, and that text is read by a model. Only ids, paths and server-side values appear, and a path is checked to be an identifier before it is interpolated.
  • Returned page content is marked as untrusted data, because a wiki is exactly a place where text is stored to be read later.
  • There is no tool that creates an API key, although the Wiki.js API offers one: a model able to mint a full-access key could grant itself administrative access that outlives this session. list_api_keys and revoke_api_key are here so keys can be audited and taken away.
  • Credentials are deleted from the environment after startup, secrets in API responses are redacted, error bodies are truncated and HTML error pages dropped.
  • WIKIJS_READ_ONLY=true does not register the write tools at all, and WIKIJS_DENY_TOOLS cuts finer along the same line — a filtered tool is never built, not refused at call time.

Releasing

  1. Add the CHANGELOG entry and bump package.json.
  2. npm run lint && npm run build && npm run test:coverage
  3. Commit, then push a signed tag: git tag -s vX.Y.Z -m "vX.Y.Z" && git push origin main vX.Y.Z

The release workflow publishes to npm (Trusted Publishing, with provenance), creates the GitHub release from the CHANGELOG section and updates the MCP Registry entry.

License

MIT © Willi Thiel

Reviews

No reviews yet

Be the first to review this server!