mcp-server-wikijs
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| WIKIJS_URL | No | Base URL of your Wiki.js instance (e.g. https://wiki.example.com). The GraphQL endpoint is <URL>/graphql. | |
| WIKIJS_TOKEN | No | Wiki.js API key. Aliases also accepted: WIKIJS_API_TOKEN, WIKI_JS_MCP_API_TOKEN. | |
| WIKIJS_API_TOKEN | No | Alias for WIKIJS_TOKEN. | |
| WIKI_JS_MCP_API_TOKEN | No | Alias for WIKIJS_TOKEN. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| execute_graphqlA | Run an arbitrary Wiki.js GraphQL query or mutation. Use for operations not covered by
the typed tools. |
| list_pagesA | List wiki pages (id, locale, path, title). Optionally filter by locale (e.g. 'en'). |
| get_pageA | Get a page's content + metadata, by path+locale (default locale 'en') or by id. |
| create_pageB | Create a new wiki page. |
| update_pageA | Update an existing page by id. Only the fields you pass are changed; the rest are kept from the current page. |
| delete_pageC | Delete a page by id. |
| get_navigationB | Get the current navigation config (mode) and tree. |
| set_navigation_modeA | Set the navigation mode. One of: NONE, TREE, MIXED, STATIC. TREE/MIXED auto-build the sidebar from the page tree. |
| list_groupsC | List user groups (id, name). |
| get_groupA | Get a single group with its permissions and page rules. |
| trigger_git_syncB | Trigger a storage action — defaults to syncing the Git storage target, which re-imports the content repo. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 11 tools
Each tool targets a distinct operation: page CRUD, group retrieval, navigation management, admin actions. Tools like get_page vs list_pages are clearly differentiated by scope. No overlapping purposes.
All tool names follow a consistent verb_noun pattern (e.g., create_page, get_navigation, list_groups) using underscores. No deviations or mixed conventions.
11 tools provide a well-scoped set covering page management, groups, navigation, and admin. The count is appropriate for the Wiki.js domain without being excessive or sparse.
Core page operations are complete (CRUD+list). Groups only have read operations, and user management is absent, but the GraphQL escape hatch covers missing operations. Minor gaps in group lifecycle.