mulmocast-vision 1.0.0 β†’ 1.0.2

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 (3) hide show
  1. package/README.md +44 -15
  2. package/lib/mcp.js +2 -2
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -3,32 +3,46 @@
3
3
  **mulmocast-vision** is a tool that uses LLMs via MCP (Model Context Protocol) to automatically generate presentation slides, similar to PowerPoint.
4
4
  With **80+ business-oriented slide templates**, you can quickly create proposals, strategy decks, and other professional materials.
5
5
 
6
- ---
7
6
 
8
- ## Features
7
+ ## ✨ Features
9
8
 
10
- - πŸ“‘ **Rich Templates**: 80 business-optimized slide designs
11
- - ⚑ **Instant Generation**: Create slides in seconds using LLMs via MCP
12
- - πŸ–₯️ **Simple Setup**: Just add a small config to your MCP client (e.g., Claude Desktop)
13
- - πŸ“‚ **Auto Save**: Output files are saved under `~/Documents/mulmocast-vision/`
9
+ - πŸ“‘ **80+ Rich Templates**
10
+ Business-optimized designs for proposals, reports, and analysis documents
11
+
12
+ - ⚑ **Instant Generation**
13
+ Create professional slides in seconds using LLMs via :contentReference[oaicite:1]{index=1} (MCP)
14
+
15
+ - βš™οΈ **Simple Setup**
16
+ Just add a small config to your MCP client (e.g. :contentReference[oaicite:2]{index=2}) to start
17
+
18
+ - πŸ’Ύ **Auto Save & Easy Export**
19
+ Outputs are automatically saved under `~/Documents/mulmocast-vision/`
20
+ Export instantly to PDF
21
+
22
+ - 🎨 **Fully Customizable**
23
+ HTML-based templates allow fine-grained design tweaks or full redesigns
24
+
25
+ You can create documents like these in just a few minutes.
26
+
27
+ [Sample AI Company Analysis Slide (PDF)](https://github.com/isamu/slide_example/blob/master/pdf/AI_Companies_Corporate_Analysis_2025.pdf)
14
28
 
15
- ---
16
29
 
17
30
  ## No Installation Needed
18
31
 
19
32
  Runs directly with `npx`. No global install required.
20
33
 
21
- ---
22
34
 
23
- ## Configuration
35
+ ## Setup
24
36
 
25
- Add the following to your MCP client settings (e.g., Claude Desktop):
37
+ Here is an example for Claude desktop. Add the following to your `claude_desktop_config.json`.
38
+ You can use similar settings for other MCPs.
26
39
 
27
40
  ```json
41
+ // claude_desktop_config.json
28
42
  "mulmocast-vision": {
29
43
  "command": "npx",
30
44
  "args": [
31
- "mulmocast-vision"
45
+ "mulmocast-vision@latest"
32
46
  ],
33
47
  "transport": {
34
48
  "stdio": true
@@ -36,15 +50,20 @@ Add the following to your MCP client settings (e.g., Claude Desktop):
36
50
  }
37
51
  ```
38
52
 
39
- ---
53
+ That's all for the setup.
54
+ If the path to `npx` is not set, specify the full path.
55
+ If `npx` is not installed, please install it in advance.
56
+
40
57
 
41
58
  ## Usage
42
59
 
43
60
  1. Launch an MCP-compatible client (e.g., Claude Desktop)
44
- 2. Call `mulmocast-vision` to request slide generation
45
- 3. The generated slides will be saved automatically under `~/Documents/mulmocast-vision/`
61
+ 2. Just give an instruction like "Compare corporate analysis of AI companies such as OpenAi Anthropic Replicate. About 20 slides.".
62
+ 3. The generated slides will be saved automatically under `~/Documents/mulmocast-vision/{date}`
63
+
64
+ Currently available features include creating slides for each page, updating specified slides, generating a PDF of all slides, and generating a PDF for specified slides.
65
+ You can instruct these actions via prompts.
46
66
 
47
- ---
48
67
 
49
68
  ## Output Examples
50
69
 
@@ -53,6 +72,16 @@ Add the following to your MCP client settings (e.g., Claude Desktop):
53
72
  - SWOT, PEST, and 3C Analysis
54
73
  - Summary, Agenda, and Closing Slides
55
74
 
75
+ ## For Developers
76
+
77
+ MulmoCast Vision is open source, so you can apply various designs by modifying the HTML.
78
+ For adding styles, please refer to [Style.ja.md](https://github.com/receptron/mulmocast-vision/blob/main/Style.ja.md).
79
+
80
+ ### Official Repository & Package
81
+
82
+ - [GitHub: receptron/mulmocast-vision](https://github.com/receptron/mulmocast-vision)
83
+ - [npm: mulmocast-vision](https://www.npmjs.com/package/mulmocast-vision)
84
+
56
85
  ---
57
86
 
58
87
  # mulmocast-vision(ζ—₯本θͺžη‰ˆοΌ‰
package/lib/mcp.js CHANGED
@@ -11,8 +11,8 @@ const stdio_js_1 = require("@modelcontextprotocol/sdk/server/stdio.js");
11
11
  const utils_1 = require("./utils");
12
12
  const getServer = (handler) => {
13
13
  const server = new index_js_1.Server({
14
- name: "mulmocast-vision-mcp",
15
- version: "0.1.4",
14
+ name: "mulmocast-vision",
15
+ version: "1.0.2",
16
16
  }, {
17
17
  capabilities: {
18
18
  tools: {},
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "mulmocast-vision",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Easy and stylish presentation slide generator",
5
- "mcpName": "io.github.receptron/mulmocast-vision",
5
+ "mcpName": "io.github.isamu/mulmocast-vision",
6
6
  "main": "lib/index.js",
7
7
  "bin": {
8
8
  "mulmocast-vision": "lib/mcp.js"