gogcli-mcp-slides 2.0.0
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 +68 -0
- package/SKILL.md +50 -0
- package/dist/index.js +30490 -0
- package/manifest.json +143 -0
- package/package.json +41 -0
- package/src/index.ts +12 -0
- package/src/tools/slides-extra.ts +5 -0
- package/tests/tools/slides-extra.test.ts +10 -0
- package/tsconfig.json +9 -0
- package/vitest.config.ts +17 -0
package/README.md
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# gogcli-mcp-slides
|
|
2
|
+
|
|
3
|
+
> [!WARNING]
|
|
4
|
+
> **AI-developed project.** This codebase was built and is actively maintained by [Claude Code](https://www.anthropic.com/claude). Review all code and tool permissions before use.
|
|
5
|
+
|
|
6
|
+
Extended Google Slides [MCP](https://modelcontextprotocol.io) server via [gogcli](https://github.com/steipete/gogcli). Includes auth tools plus 12 dedicated Slides tools for creating, editing, and exporting presentations (markdown-driven creation, template substitution, speaker notes, slide images, and more).
|
|
7
|
+
|
|
8
|
+
## Requirements
|
|
9
|
+
|
|
10
|
+
- [gogcli](https://github.com/steipete/gogcli) installed and authenticated
|
|
11
|
+
- Node.js 18+
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
brew install gogcli
|
|
15
|
+
gog auth add your@gmail.com --services slides
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npm install -g gogcli-mcp-slides
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
### Claude Desktop
|
|
25
|
+
|
|
26
|
+
Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
|
|
27
|
+
|
|
28
|
+
```json
|
|
29
|
+
{
|
|
30
|
+
"mcpServers": {
|
|
31
|
+
"gogcli-slides": {
|
|
32
|
+
"command": "gogcli-mcp-slides",
|
|
33
|
+
"env": {
|
|
34
|
+
"GOG_ACCOUNT": "you@gmail.com"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### Claude Code
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
claude mcp add gogcli-slides -- gogcli-mcp-slides
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Slides Tools (12)
|
|
48
|
+
|
|
49
|
+
Plus 5 auth tools and 1 `gog_slides_run` escape hatch for a total of 18 tools.
|
|
50
|
+
|
|
51
|
+
| Tool | Description |
|
|
52
|
+
|------|-------------|
|
|
53
|
+
| `gog_slides_export` | Export a presentation to a local file (pdf or pptx) |
|
|
54
|
+
| `gog_slides_info` | Get metadata for a presentation |
|
|
55
|
+
| `gog_slides_create` | Create a new presentation, optionally from a template |
|
|
56
|
+
| `gog_slides_create_from_markdown` | Create a new presentation from markdown content |
|
|
57
|
+
| `gog_slides_create_from_template` | Create from a template with placeholder replacements |
|
|
58
|
+
| `gog_slides_copy` | Copy a presentation |
|
|
59
|
+
| `gog_slides_add_slide` | Add a new slide from a local image |
|
|
60
|
+
| `gog_slides_list_slides` | List slides in a presentation |
|
|
61
|
+
| `gog_slides_delete_slide` | Delete a slide |
|
|
62
|
+
| `gog_slides_read_slide` | Read the content of a slide |
|
|
63
|
+
| `gog_slides_update_notes` | Update speaker notes on a slide |
|
|
64
|
+
| `gog_slides_replace_slide` | Replace the image content of an existing slide |
|
|
65
|
+
|
|
66
|
+
## License
|
|
67
|
+
|
|
68
|
+
MIT
|
package/SKILL.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gogcli-mcp-slides
|
|
3
|
+
description: Use when the user asks to create, edit, read, or export Google Slides presentations. Triggers for requests involving slides, decks, presentations, speaker notes, slide images, markdown-to-slides, presentation templates with placeholder replacement, or exporting to pdf/pptx. Includes auth and Slides tools only.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# gogcli-mcp-slides
|
|
7
|
+
|
|
8
|
+
Extended Google Slides MCP server via [gogcli](https://github.com/steipete/gogcli) — 18 tools: auth + 12 Slides + 1 run escape hatch.
|
|
9
|
+
|
|
10
|
+
- **Source:** [github.com/chrischall/gogcli-mcp](https://github.com/chrischall/gogcli-mcp)
|
|
11
|
+
|
|
12
|
+
## Requirements
|
|
13
|
+
|
|
14
|
+
- [gogcli](https://github.com/steipete/gogcli) installed and authenticated
|
|
15
|
+
- Node.js 18 or later
|
|
16
|
+
|
|
17
|
+
## Setup
|
|
18
|
+
|
|
19
|
+
```json
|
|
20
|
+
{
|
|
21
|
+
"mcpServers": {
|
|
22
|
+
"gogcli-slides": {
|
|
23
|
+
"command": "npx",
|
|
24
|
+
"args": ["-y", "gogcli-mcp-slides"],
|
|
25
|
+
"env": {
|
|
26
|
+
"GOG_ACCOUNT": "you@gmail.com"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Slides Tools
|
|
34
|
+
|
|
35
|
+
| Tool | What it does |
|
|
36
|
+
|------|-------------|
|
|
37
|
+
| `gog_slides_export` | Export a presentation to pdf or pptx |
|
|
38
|
+
| `gog_slides_info` | Get presentation metadata |
|
|
39
|
+
| `gog_slides_create` | Create a new presentation (optionally from a template) |
|
|
40
|
+
| `gog_slides_create_from_markdown` | Create a new presentation from markdown |
|
|
41
|
+
| `gog_slides_create_from_template` | Create from a template with placeholder replacements |
|
|
42
|
+
| `gog_slides_copy` | Copy a presentation |
|
|
43
|
+
| `gog_slides_add_slide` | Add a slide from a local image |
|
|
44
|
+
| `gog_slides_list_slides` | List slides in a presentation |
|
|
45
|
+
| `gog_slides_delete_slide` | Delete a slide |
|
|
46
|
+
| `gog_slides_read_slide` | Read the content of a slide |
|
|
47
|
+
| `gog_slides_update_notes` | Update speaker notes |
|
|
48
|
+
| `gog_slides_replace_slide` | Replace the image on an existing slide |
|
|
49
|
+
|
|
50
|
+
Plus 5 auth tools and `gog_slides_run` for anything not covered.
|