whiteboard-mcp-server 2.2.0 → 2.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -309,10 +309,10 @@ Typical workflow:
309
309
  LATEX ENVIRONMENT:
310
310
  - Server runs texlive-full (TeX Live 2022) — all standard packages are available (amsmath, tikz, listings, hyperref, geometry, booktabs, etc.)
311
311
  - Engines: pdflatex (default), xelatex
312
- - For Japanese/Chinese/Korean (CJK) support with furigana: use xelatex engine with xeCJK package and ruby package:
312
+ - For Japanese/Chinese/Korean (CJK) support with furigana: use xelatex engine with xeCJK package.
313
+ The \\ruby{kanji}{furigana} command is auto-injected — no package needed:
313
314
  \\usepackage{xeCJK}
314
315
  \\setCJKmainfont{Noto Serif CJK JP}
315
- \\usepackage{ruby}
316
316
  \\ruby{漢字}{かんじ}
317
317
  - Available CJK fonts: Noto Serif CJK JP, Noto Sans CJK JP, Noto Sans Mono CJK JP (also SC, TC, KR variants)
318
318
  - xelatex also supports custom system fonts via fontspec`,
@@ -515,7 +515,7 @@ Use this to:
515
515
  - Debug LaTeX errors by reading the compilation log
516
516
  - Verify that packages work correctly
517
517
 
518
- The server runs texlive-full with all standard packages. For CJK/Japanese support, use xelatex engine with xeCJK + ruby packages and Noto CJK fonts.
518
+ The server runs texlive-full with all standard packages. For CJK/Japanese support, use xelatex engine with xeCJK and Noto CJK fonts. The \\ruby{kanji}{furigana} command is auto-injected for furigana support.
519
519
 
520
520
  Returns the exit code (0 = success), the full compilation log, and the PDF size if successful.`,
521
521
  inputSchema: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "whiteboard-mcp-server",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "MCP server for Whiteboard notes & papers (LaTeX) integration with Claude Code",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",