worklog-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| WORKLOG_DIR | No | Custom path for worklog storage (e.g., ~/Documents/worklogs) |
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 |
|---|---|
| save_worklogA | 作業ログ、思考の断片、エラー解決策を保存します。 データは月単位のMarkdownファイル(~/.worklogs/YYYY-MM.md)に追記されます。 Args: content: ログの内容。作業メモ、解決策、思考の断片など。 tags: 関連タグのリスト(任意)。検索時に役立ちます。 Returns: 保存成功メッセージとファイルパスを含む辞書 |
| search_worklogsA | 過去のMarkdownログファイルを全走査し、キーワードに関連するエントリを抽出します。 シンプルなテキストマッチング(grep的な挙動)で該当箇所と、 その周辺行(コンテキスト)を抽出して返します。 Args: query: 検索キーワード(正規表現ではなく、プレーンテキスト) Returns: 検索結果を含む辞書(マッチしたエントリのリスト) |
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 2 tools
The two tools have completely distinct purposes: one saves worklogs, the other searches them. There is no overlap or ambiguity between them.
Both tool names follow a consistent verb_noun pattern (save_worklog, search_worklogs), making them predictable and easy to use.
With only 2 tools, the server is on the thin side, but for a simple worklog utility it covers the basic needs of saving and searching. It is borderline but not unreasonable.
The server provides create (save) and read (search) functionality but lacks update or delete operations, which are notable gaps for a complete worklog lifecycle.