xwiki-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| XWIKI_URL | Yes | Instance URL, for example https://wiki.example.org/xwiki. The path prefix matters: most installations serve XWiki under /xwiki. https is added when the scheme is missing. | |
| XWIKI_WIKI | No | Wiki name in the REST path. Only relevant on a multi-wiki farm; list_wikis reports the available names. | xwiki |
| XWIKI_PASSWORD | Yes | The account's password. | |
| XWIKI_USERNAME | Yes | XWiki login name. | |
| XWIKI_TIMEOUT_MS | No | Per-request timeout in milliseconds. | 15000 |
| XWIKI_MAX_TEXT_CHARS | No | Cap on page content handed to the assistant. | 50000 |
| XWIKI_MAX_RESPONSE_BYTES | No | Hard cap on a single response body. | 4194304 |
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": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_pagesA | Full-text search across page names, titles and content of the configured wiki. Returns each hit's pageRef, title, space and last-modified date. Pass a pageRef to get_page to read the page. |
| get_pageA | Read one page's content by its reference, for example 'Onboarding.Checklist' or 'Main.WebHome'. Get the reference from search_pages or list_pages_in_space; a bare page name without a space is not addressable. Long pages are truncated with an explicit marker. |
| list_spacesA | List the spaces of the configured wiki, with the reference to pass to list_pages_in_space. Use this to orient yourself before browsing. |
| list_pages_in_spaceA | List the pages directly inside one space. Nested spaces are not expanded; call this again with the nested space's reference to descend. |
| list_page_attachmentsA | List the files attached to one page, with name, size and MIME type. The file contents are not downloaded. |
| list_wikisA | List the wikis this account can see. Only relevant on a multi-wiki farm: if the wiki you want is not the configured one, set XWIKI_WIKI to its name and restart the server. |
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 6 tools
Each tool targets a distinct resource/action: full-text search, single page retrieval, space listing, in-space page listing, attachment listing, and wiki listing. Although list_spaces and list_wikis sound similar, their descriptions clearly separate spaces within a wiki from wiki instances on a farm. No two tools appear interchangeable.
Tool names follow a consistent verb_noun pattern: search_pages, get_page, list_spaces, list_pages_in_space, list_page_attachments, and list_wikis. All use lowercase snake_case and list_ for enumeration operations. Minor singular/plural variation is natural and does not create confusion.
Six tools is well-scoped for a wiki browsing/reading server. Each tool has a clear role in navigation or retrieval, with no redundancy. The count is not excessive for the feature set.
The server covers the core read/browse cycle: discover wikis, navigate spaces, search/list pages, fetch page content, and see attachments. The only notable gaps are that attachment contents cannot be fetched and there are no page lifecycle operations, but the exposed surface appears intentionally read-oriented. No critical dead end blocks typical wiki research.