@z7589xxz758/slidex-mcp-server 0.1.0 → 0.1.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.
- package/README.md +17 -1
- package/dist/server.mjs +36321 -37459
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,14 @@ MCP server for SlideX MotionDoc decks. It lets MCP clients create decks, read te
|
|
|
4
4
|
|
|
5
5
|
Current authoring syntax uses `<Slide>` with `Text`, `Icon`, `Chart`, `ImageBlock`, and `VideoBlock`. New MCP block insertion only creates the current authoring blocks.
|
|
6
6
|
|
|
7
|
+
## Quick Start
|
|
8
|
+
|
|
9
|
+
Run the server directly without installing:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npx -y @z7589xxz758/slidex-mcp-server
|
|
13
|
+
```
|
|
14
|
+
|
|
7
15
|
## Use With MCP Clients
|
|
8
16
|
|
|
9
17
|
```json
|
|
@@ -11,7 +19,7 @@ Current authoring syntax uses `<Slide>` with `Text`, `Icon`, `Chart`, `ImageBloc
|
|
|
11
19
|
"mcpServers": {
|
|
12
20
|
"slidex": {
|
|
13
21
|
"command": "npx",
|
|
14
|
-
"args": ["-y", "slidex-mcp-server"]
|
|
22
|
+
"args": ["-y", "@z7589xxz758/slidex-mcp-server"]
|
|
15
23
|
}
|
|
16
24
|
}
|
|
17
25
|
}
|
|
@@ -57,3 +65,11 @@ When connecting through stdio, prefer the silent npm form:
|
|
|
57
65
|
- `slidex_list_block_types`
|
|
58
66
|
|
|
59
67
|
`slidex_add_block` currently accepts `Text`, `Image`, `Video`, `ChartBar`, `ChartLine`, `ChartArea`, `ChartPie`, `ChartDonut`, and `Icon`.
|
|
68
|
+
|
|
69
|
+
## Dynamic Workspace Skills
|
|
70
|
+
|
|
71
|
+
When the server starts, it dynamically scans the current working directory (`process.cwd()`) for a `.agents/skills` folder. If found, it reads the `SKILL.md` files and automatically registers them as:
|
|
72
|
+
- **MCP Prompts**: `skill_<folder_name>` (e.g., `skill_high_end_visual_design`)
|
|
73
|
+
- **MCP Resources**: `workspace://skills/<folder_name>`
|
|
74
|
+
|
|
75
|
+
This allows the AI to adapt to the specific design guidelines, tones, and automated workflows of the workspace it is running in!
|