Skip to main content
Glama
fabiandistler

MCP Wiki Server

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
WIKI_PATHNoAbsolute path to a local wiki folder. If unset, defaults to ./wiki next to server.py.
WIKI_GIT_URLNoURL of a remote git repository to use as the wiki source. Takes precedence over WIKI_PATH.
WIKI_CACHE_DIRNoDirectory used to cache the cloned remote wiki repository. Defaults to the system tempdir.
WIKI_GIT_BRANCHNoBranch to use for the remote git repository. Defaults to "main".

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
wiki_gitA

Search or read the 'git' wiki topic. No args: list pages. query=: find matches. page=<filename.md>: full page.

wiki_pythonA

Search or read the 'python' wiki topic. No args: list pages. query=: find matches. page=<filename.md>: full page.

wiki_sqlA

Search or read the 'sql' wiki topic. No args: list pages. query=: find matches. page=<filename.md>: full page.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4/5.0

Scored across 3 tools

Disambiguation4/5

Tools are clearly separated by wiki topic (git, python, sql), so an agent can pick the right one when the topic is known. However, the identical interface and absence of a generic topic parameter or cross-topic search mean ambiguity arises when the topic is unspecified or spans multiple wikis.

Naming Consistency5/5

All tool names follow a consistent wiki_<topic> pattern (wiki_git, wiki_python, wiki_sql), making them predictable and easy to parse.

Tool Count4/5

Three tools map to three topics, which is a reasonable number for the stated scope, though a single parameterized tool would reduce duplication and scale better.

Completeness3/5

Read/list/search operations are covered per topic, but there is no write capability (create/edit/delete) and no way to discover or query other topics, leaving notable gaps for a wiki server.

Maintenance

ActivityActive
ResponsivenessNo issues