Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
WIKIJS_URLNoBase URL of your Wiki.js instance (e.g. https://wiki.example.com). The GraphQL endpoint is <URL>/graphql.
WIKIJS_TOKENNoWiki.js API key. Aliases also accepted: WIKIJS_API_TOKEN, WIKI_JS_MCP_API_TOKEN.
WIKIJS_API_TOKENNoAlias for WIKIJS_TOKEN.
WIKI_JS_MCP_API_TOKENNoAlias 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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
execute_graphqlA

Run an arbitrary Wiki.js GraphQL query or mutation. Use for operations not covered by the typed tools. variables is an optional dict of GraphQL variables.

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. path is locale-relative (e.g. 'guides/getting-started').

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

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.7/5.0

Scored across 11 tools

Disambiguation5/5

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.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (e.g., create_page, get_navigation, list_groups) using underscores. No deviations or mixed conventions.

Tool Count5/5

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.

Completeness4/5

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.

Maintenance

ActivityInactive
ResponsivenessNo issues