deckrun-mcp 1.0.0__tar.gz
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.
- deckrun_mcp-1.0.0/LICENSE +21 -0
- deckrun_mcp-1.0.0/PKG-INFO +193 -0
- deckrun_mcp-1.0.0/README.md +163 -0
- deckrun_mcp-1.0.0/deckrun_mcp.egg-info/PKG-INFO +193 -0
- deckrun_mcp-1.0.0/deckrun_mcp.egg-info/SOURCES.txt +11 -0
- deckrun_mcp-1.0.0/deckrun_mcp.egg-info/dependency_links.txt +1 -0
- deckrun_mcp-1.0.0/deckrun_mcp.egg-info/entry_points.txt +3 -0
- deckrun_mcp-1.0.0/deckrun_mcp.egg-info/requires.txt +4 -0
- deckrun_mcp-1.0.0/deckrun_mcp.egg-info/top_level.txt +2 -0
- deckrun_mcp-1.0.0/deckrun_mcp.py +393 -0
- deckrun_mcp-1.0.0/deckrun_mcp_http.py +566 -0
- deckrun_mcp-1.0.0/pyproject.toml +46 -0
- deckrun_mcp-1.0.0/setup.cfg +4 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Agentic Decks (https://agenticdecks.com)
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: deckrun-mcp
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: MCP server for Deckrun — generate presentation PDFs, narrated videos, and audio from Markdown
|
|
5
|
+
Author-email: Agentic Decks <contact@agenticdecks.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://agenticdecks.com
|
|
8
|
+
Project-URL: Documentation, https://agenticdecks.com/docs
|
|
9
|
+
Project-URL: Repository, https://github.com/agenticdecks/deckrun-mcp
|
|
10
|
+
Project-URL: Issues, https://github.com/agenticdecks/deckrun-mcp/issues
|
|
11
|
+
Keywords: mcp,deckrun,pdf,slides,presentations,ai-agents,model-context-protocol
|
|
12
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
21
|
+
Classifier: Topic :: Multimedia :: Graphics :: Presentation
|
|
22
|
+
Requires-Python: >=3.10
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
License-File: LICENSE
|
|
25
|
+
Requires-Dist: mcp[cli]>=1.1.0
|
|
26
|
+
Requires-Dist: uvicorn
|
|
27
|
+
Requires-Dist: starlette
|
|
28
|
+
Requires-Dist: requests
|
|
29
|
+
Dynamic: license-file
|
|
30
|
+
|
|
31
|
+
# Deckrun MCP Server
|
|
32
|
+
|
|
33
|
+
[](https://glama.ai/mcp/servers/agenticdecks/deckrun-mcp)
|
|
34
|
+
[](https://github.com/punkpeye/awesome-mcp-servers)
|
|
35
|
+
|
|
36
|
+
MCP server for [Deckrun](https://agenticdecks.com) — generate presentation PDFs,
|
|
37
|
+
narrated videos, and audio from Markdown. Built for AI agents and IDEs.
|
|
38
|
+
|
|
39
|
+
**Free tier:** no API key required — generate PDFs instantly.
|
|
40
|
+
**Paid tier:** set `DECKRUN_API_KEY` to unlock video, audio, and account tools.
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## Quickstart — no install needed
|
|
45
|
+
|
|
46
|
+
The HTTP transport is hosted and ready. Add one JSON snippet to your IDE.
|
|
47
|
+
|
|
48
|
+
### VS Code (GitHub Copilot Chat — v1.99+)
|
|
49
|
+
|
|
50
|
+
`.vscode/mcp.json` in your project (this file is included in the repo):
|
|
51
|
+
|
|
52
|
+
```json
|
|
53
|
+
{
|
|
54
|
+
"servers": {
|
|
55
|
+
"deckrun": {
|
|
56
|
+
"type": "http",
|
|
57
|
+
"url": "https://deckrun-mcp-free.agenticdecks.com/mcp/"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
### Cursor
|
|
64
|
+
|
|
65
|
+
`.cursor/mcp.json` in your project:
|
|
66
|
+
|
|
67
|
+
```json
|
|
68
|
+
{
|
|
69
|
+
"mcpServers": {
|
|
70
|
+
"deckrun": {
|
|
71
|
+
"url": "https://deckrun-mcp-free.agenticdecks.com/mcp/"
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
### Google Antigravity (Gemini CLI)
|
|
78
|
+
|
|
79
|
+
`~/.gemini/antigravity/mcp_config.json`:
|
|
80
|
+
|
|
81
|
+
```json
|
|
82
|
+
{
|
|
83
|
+
"mcpServers": {
|
|
84
|
+
"deckrun": {
|
|
85
|
+
"serverUrl": "https://deckrun-mcp-free.agenticdecks.com/mcp/"
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
### Claude Code (terminal)
|
|
92
|
+
|
|
93
|
+
`~/.claude/settings.json`:
|
|
94
|
+
|
|
95
|
+
```json
|
|
96
|
+
{
|
|
97
|
+
"mcpServers": {
|
|
98
|
+
"deckrun": {
|
|
99
|
+
"type": "http",
|
|
100
|
+
"url": "https://deckrun-mcp-free.agenticdecks.com/mcp/"
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
## Stdio install (Claude Desktop and other stdio-only clients)
|
|
109
|
+
|
|
110
|
+
```bash
|
|
111
|
+
pip install mcp requests
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
**Claude Desktop** — `~/Library/Application Support/Claude/claude_desktop_config.json`:
|
|
115
|
+
|
|
116
|
+
```json
|
|
117
|
+
{
|
|
118
|
+
"mcpServers": {
|
|
119
|
+
"deckrun": {
|
|
120
|
+
"command": "python",
|
|
121
|
+
"args": ["/path/to/deckrun_mcp.py"]
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
**Paid tier** — add the API key:
|
|
128
|
+
|
|
129
|
+
```json
|
|
130
|
+
{
|
|
131
|
+
"mcpServers": {
|
|
132
|
+
"deckrun": {
|
|
133
|
+
"command": "python",
|
|
134
|
+
"args": ["/path/to/deckrun_mcp.py"],
|
|
135
|
+
"env": { "DECKRUN_API_KEY": "dk_live_..." }
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
Get your API key at [agenticdecks.com](https://agenticdecks.com) after subscribing.
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## Tools
|
|
146
|
+
|
|
147
|
+
### Free tier (no key required)
|
|
148
|
+
|
|
149
|
+
| Tool | Description |
|
|
150
|
+
|------|-------------|
|
|
151
|
+
| `get_slide_format` | Fetch the live slide format spec — layout tags, syntax rules, example Markdown |
|
|
152
|
+
| `generate_slide_deck` | Convert Deckrun Markdown → PDF. Returns a public URL (90-day expiry) |
|
|
153
|
+
|
|
154
|
+
### Paid tier (`DECKRUN_API_KEY` set)
|
|
155
|
+
|
|
156
|
+
All free tools plus:
|
|
157
|
+
|
|
158
|
+
| Tool | Description |
|
|
159
|
+
|------|-------------|
|
|
160
|
+
| `generate_video` | Markdown → narrated MP4 (async, returns `job_id`) |
|
|
161
|
+
| `generate_audio` | Slide notes → MP3 narration (async, returns `job_id`) |
|
|
162
|
+
| `check_job` | Poll async job status until `complete` or `failed` |
|
|
163
|
+
| `get_account` | Plan name, render units used/remaining, active add-ons |
|
|
164
|
+
|
|
165
|
+
---
|
|
166
|
+
|
|
167
|
+
## Example prompt
|
|
168
|
+
|
|
169
|
+
Once configured, ask your AI:
|
|
170
|
+
|
|
171
|
+
> "Create a 6-slide deck on the future of edge computing"
|
|
172
|
+
|
|
173
|
+
The AI will call `get_slide_format` to learn the syntax, write the Markdown,
|
|
174
|
+
call `generate_slide_deck`, and reply with a clickable PDF link.
|
|
175
|
+
|
|
176
|
+
---
|
|
177
|
+
|
|
178
|
+
## HTTP endpoints
|
|
179
|
+
|
|
180
|
+
| Tier | MCP endpoint |
|
|
181
|
+
|------|-------------|
|
|
182
|
+
| Free | `https://deckrun-mcp-free.agenticdecks.com/mcp/` |
|
|
183
|
+
| Paid | `https://deckrun-mcp.agenticdecks.com/mcp/` *(coming soon)* |
|
|
184
|
+
|
|
185
|
+
Discovery: `GET <endpoint>` returns server metadata as JSON.
|
|
186
|
+
|
|
187
|
+
---
|
|
188
|
+
|
|
189
|
+
## Links
|
|
190
|
+
|
|
191
|
+
- [Slide format reference](https://agenticdecks.com/deckrun)
|
|
192
|
+
- [Pricing](https://agenticdecks.com/pricing)
|
|
193
|
+
- [Agentic Decks](https://agenticdecks.com)
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
# Deckrun MCP Server
|
|
2
|
+
|
|
3
|
+
[](https://glama.ai/mcp/servers/agenticdecks/deckrun-mcp)
|
|
4
|
+
[](https://github.com/punkpeye/awesome-mcp-servers)
|
|
5
|
+
|
|
6
|
+
MCP server for [Deckrun](https://agenticdecks.com) — generate presentation PDFs,
|
|
7
|
+
narrated videos, and audio from Markdown. Built for AI agents and IDEs.
|
|
8
|
+
|
|
9
|
+
**Free tier:** no API key required — generate PDFs instantly.
|
|
10
|
+
**Paid tier:** set `DECKRUN_API_KEY` to unlock video, audio, and account tools.
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## Quickstart — no install needed
|
|
15
|
+
|
|
16
|
+
The HTTP transport is hosted and ready. Add one JSON snippet to your IDE.
|
|
17
|
+
|
|
18
|
+
### VS Code (GitHub Copilot Chat — v1.99+)
|
|
19
|
+
|
|
20
|
+
`.vscode/mcp.json` in your project (this file is included in the repo):
|
|
21
|
+
|
|
22
|
+
```json
|
|
23
|
+
{
|
|
24
|
+
"servers": {
|
|
25
|
+
"deckrun": {
|
|
26
|
+
"type": "http",
|
|
27
|
+
"url": "https://deckrun-mcp-free.agenticdecks.com/mcp/"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Cursor
|
|
34
|
+
|
|
35
|
+
`.cursor/mcp.json` in your project:
|
|
36
|
+
|
|
37
|
+
```json
|
|
38
|
+
{
|
|
39
|
+
"mcpServers": {
|
|
40
|
+
"deckrun": {
|
|
41
|
+
"url": "https://deckrun-mcp-free.agenticdecks.com/mcp/"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### Google Antigravity (Gemini CLI)
|
|
48
|
+
|
|
49
|
+
`~/.gemini/antigravity/mcp_config.json`:
|
|
50
|
+
|
|
51
|
+
```json
|
|
52
|
+
{
|
|
53
|
+
"mcpServers": {
|
|
54
|
+
"deckrun": {
|
|
55
|
+
"serverUrl": "https://deckrun-mcp-free.agenticdecks.com/mcp/"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
### Claude Code (terminal)
|
|
62
|
+
|
|
63
|
+
`~/.claude/settings.json`:
|
|
64
|
+
|
|
65
|
+
```json
|
|
66
|
+
{
|
|
67
|
+
"mcpServers": {
|
|
68
|
+
"deckrun": {
|
|
69
|
+
"type": "http",
|
|
70
|
+
"url": "https://deckrun-mcp-free.agenticdecks.com/mcp/"
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
## Stdio install (Claude Desktop and other stdio-only clients)
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
pip install mcp requests
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
**Claude Desktop** — `~/Library/Application Support/Claude/claude_desktop_config.json`:
|
|
85
|
+
|
|
86
|
+
```json
|
|
87
|
+
{
|
|
88
|
+
"mcpServers": {
|
|
89
|
+
"deckrun": {
|
|
90
|
+
"command": "python",
|
|
91
|
+
"args": ["/path/to/deckrun_mcp.py"]
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
**Paid tier** — add the API key:
|
|
98
|
+
|
|
99
|
+
```json
|
|
100
|
+
{
|
|
101
|
+
"mcpServers": {
|
|
102
|
+
"deckrun": {
|
|
103
|
+
"command": "python",
|
|
104
|
+
"args": ["/path/to/deckrun_mcp.py"],
|
|
105
|
+
"env": { "DECKRUN_API_KEY": "dk_live_..." }
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
Get your API key at [agenticdecks.com](https://agenticdecks.com) after subscribing.
|
|
112
|
+
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
## Tools
|
|
116
|
+
|
|
117
|
+
### Free tier (no key required)
|
|
118
|
+
|
|
119
|
+
| Tool | Description |
|
|
120
|
+
|------|-------------|
|
|
121
|
+
| `get_slide_format` | Fetch the live slide format spec — layout tags, syntax rules, example Markdown |
|
|
122
|
+
| `generate_slide_deck` | Convert Deckrun Markdown → PDF. Returns a public URL (90-day expiry) |
|
|
123
|
+
|
|
124
|
+
### Paid tier (`DECKRUN_API_KEY` set)
|
|
125
|
+
|
|
126
|
+
All free tools plus:
|
|
127
|
+
|
|
128
|
+
| Tool | Description |
|
|
129
|
+
|------|-------------|
|
|
130
|
+
| `generate_video` | Markdown → narrated MP4 (async, returns `job_id`) |
|
|
131
|
+
| `generate_audio` | Slide notes → MP3 narration (async, returns `job_id`) |
|
|
132
|
+
| `check_job` | Poll async job status until `complete` or `failed` |
|
|
133
|
+
| `get_account` | Plan name, render units used/remaining, active add-ons |
|
|
134
|
+
|
|
135
|
+
---
|
|
136
|
+
|
|
137
|
+
## Example prompt
|
|
138
|
+
|
|
139
|
+
Once configured, ask your AI:
|
|
140
|
+
|
|
141
|
+
> "Create a 6-slide deck on the future of edge computing"
|
|
142
|
+
|
|
143
|
+
The AI will call `get_slide_format` to learn the syntax, write the Markdown,
|
|
144
|
+
call `generate_slide_deck`, and reply with a clickable PDF link.
|
|
145
|
+
|
|
146
|
+
---
|
|
147
|
+
|
|
148
|
+
## HTTP endpoints
|
|
149
|
+
|
|
150
|
+
| Tier | MCP endpoint |
|
|
151
|
+
|------|-------------|
|
|
152
|
+
| Free | `https://deckrun-mcp-free.agenticdecks.com/mcp/` |
|
|
153
|
+
| Paid | `https://deckrun-mcp.agenticdecks.com/mcp/` *(coming soon)* |
|
|
154
|
+
|
|
155
|
+
Discovery: `GET <endpoint>` returns server metadata as JSON.
|
|
156
|
+
|
|
157
|
+
---
|
|
158
|
+
|
|
159
|
+
## Links
|
|
160
|
+
|
|
161
|
+
- [Slide format reference](https://agenticdecks.com/deckrun)
|
|
162
|
+
- [Pricing](https://agenticdecks.com/pricing)
|
|
163
|
+
- [Agentic Decks](https://agenticdecks.com)
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: deckrun-mcp
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: MCP server for Deckrun — generate presentation PDFs, narrated videos, and audio from Markdown
|
|
5
|
+
Author-email: Agentic Decks <contact@agenticdecks.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://agenticdecks.com
|
|
8
|
+
Project-URL: Documentation, https://agenticdecks.com/docs
|
|
9
|
+
Project-URL: Repository, https://github.com/agenticdecks/deckrun-mcp
|
|
10
|
+
Project-URL: Issues, https://github.com/agenticdecks/deckrun-mcp/issues
|
|
11
|
+
Keywords: mcp,deckrun,pdf,slides,presentations,ai-agents,model-context-protocol
|
|
12
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
21
|
+
Classifier: Topic :: Multimedia :: Graphics :: Presentation
|
|
22
|
+
Requires-Python: >=3.10
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
License-File: LICENSE
|
|
25
|
+
Requires-Dist: mcp[cli]>=1.1.0
|
|
26
|
+
Requires-Dist: uvicorn
|
|
27
|
+
Requires-Dist: starlette
|
|
28
|
+
Requires-Dist: requests
|
|
29
|
+
Dynamic: license-file
|
|
30
|
+
|
|
31
|
+
# Deckrun MCP Server
|
|
32
|
+
|
|
33
|
+
[](https://glama.ai/mcp/servers/agenticdecks/deckrun-mcp)
|
|
34
|
+
[](https://github.com/punkpeye/awesome-mcp-servers)
|
|
35
|
+
|
|
36
|
+
MCP server for [Deckrun](https://agenticdecks.com) — generate presentation PDFs,
|
|
37
|
+
narrated videos, and audio from Markdown. Built for AI agents and IDEs.
|
|
38
|
+
|
|
39
|
+
**Free tier:** no API key required — generate PDFs instantly.
|
|
40
|
+
**Paid tier:** set `DECKRUN_API_KEY` to unlock video, audio, and account tools.
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## Quickstart — no install needed
|
|
45
|
+
|
|
46
|
+
The HTTP transport is hosted and ready. Add one JSON snippet to your IDE.
|
|
47
|
+
|
|
48
|
+
### VS Code (GitHub Copilot Chat — v1.99+)
|
|
49
|
+
|
|
50
|
+
`.vscode/mcp.json` in your project (this file is included in the repo):
|
|
51
|
+
|
|
52
|
+
```json
|
|
53
|
+
{
|
|
54
|
+
"servers": {
|
|
55
|
+
"deckrun": {
|
|
56
|
+
"type": "http",
|
|
57
|
+
"url": "https://deckrun-mcp-free.agenticdecks.com/mcp/"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
### Cursor
|
|
64
|
+
|
|
65
|
+
`.cursor/mcp.json` in your project:
|
|
66
|
+
|
|
67
|
+
```json
|
|
68
|
+
{
|
|
69
|
+
"mcpServers": {
|
|
70
|
+
"deckrun": {
|
|
71
|
+
"url": "https://deckrun-mcp-free.agenticdecks.com/mcp/"
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
### Google Antigravity (Gemini CLI)
|
|
78
|
+
|
|
79
|
+
`~/.gemini/antigravity/mcp_config.json`:
|
|
80
|
+
|
|
81
|
+
```json
|
|
82
|
+
{
|
|
83
|
+
"mcpServers": {
|
|
84
|
+
"deckrun": {
|
|
85
|
+
"serverUrl": "https://deckrun-mcp-free.agenticdecks.com/mcp/"
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
### Claude Code (terminal)
|
|
92
|
+
|
|
93
|
+
`~/.claude/settings.json`:
|
|
94
|
+
|
|
95
|
+
```json
|
|
96
|
+
{
|
|
97
|
+
"mcpServers": {
|
|
98
|
+
"deckrun": {
|
|
99
|
+
"type": "http",
|
|
100
|
+
"url": "https://deckrun-mcp-free.agenticdecks.com/mcp/"
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
## Stdio install (Claude Desktop and other stdio-only clients)
|
|
109
|
+
|
|
110
|
+
```bash
|
|
111
|
+
pip install mcp requests
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
**Claude Desktop** — `~/Library/Application Support/Claude/claude_desktop_config.json`:
|
|
115
|
+
|
|
116
|
+
```json
|
|
117
|
+
{
|
|
118
|
+
"mcpServers": {
|
|
119
|
+
"deckrun": {
|
|
120
|
+
"command": "python",
|
|
121
|
+
"args": ["/path/to/deckrun_mcp.py"]
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
**Paid tier** — add the API key:
|
|
128
|
+
|
|
129
|
+
```json
|
|
130
|
+
{
|
|
131
|
+
"mcpServers": {
|
|
132
|
+
"deckrun": {
|
|
133
|
+
"command": "python",
|
|
134
|
+
"args": ["/path/to/deckrun_mcp.py"],
|
|
135
|
+
"env": { "DECKRUN_API_KEY": "dk_live_..." }
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
Get your API key at [agenticdecks.com](https://agenticdecks.com) after subscribing.
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## Tools
|
|
146
|
+
|
|
147
|
+
### Free tier (no key required)
|
|
148
|
+
|
|
149
|
+
| Tool | Description |
|
|
150
|
+
|------|-------------|
|
|
151
|
+
| `get_slide_format` | Fetch the live slide format spec — layout tags, syntax rules, example Markdown |
|
|
152
|
+
| `generate_slide_deck` | Convert Deckrun Markdown → PDF. Returns a public URL (90-day expiry) |
|
|
153
|
+
|
|
154
|
+
### Paid tier (`DECKRUN_API_KEY` set)
|
|
155
|
+
|
|
156
|
+
All free tools plus:
|
|
157
|
+
|
|
158
|
+
| Tool | Description |
|
|
159
|
+
|------|-------------|
|
|
160
|
+
| `generate_video` | Markdown → narrated MP4 (async, returns `job_id`) |
|
|
161
|
+
| `generate_audio` | Slide notes → MP3 narration (async, returns `job_id`) |
|
|
162
|
+
| `check_job` | Poll async job status until `complete` or `failed` |
|
|
163
|
+
| `get_account` | Plan name, render units used/remaining, active add-ons |
|
|
164
|
+
|
|
165
|
+
---
|
|
166
|
+
|
|
167
|
+
## Example prompt
|
|
168
|
+
|
|
169
|
+
Once configured, ask your AI:
|
|
170
|
+
|
|
171
|
+
> "Create a 6-slide deck on the future of edge computing"
|
|
172
|
+
|
|
173
|
+
The AI will call `get_slide_format` to learn the syntax, write the Markdown,
|
|
174
|
+
call `generate_slide_deck`, and reply with a clickable PDF link.
|
|
175
|
+
|
|
176
|
+
---
|
|
177
|
+
|
|
178
|
+
## HTTP endpoints
|
|
179
|
+
|
|
180
|
+
| Tier | MCP endpoint |
|
|
181
|
+
|------|-------------|
|
|
182
|
+
| Free | `https://deckrun-mcp-free.agenticdecks.com/mcp/` |
|
|
183
|
+
| Paid | `https://deckrun-mcp.agenticdecks.com/mcp/` *(coming soon)* |
|
|
184
|
+
|
|
185
|
+
Discovery: `GET <endpoint>` returns server metadata as JSON.
|
|
186
|
+
|
|
187
|
+
---
|
|
188
|
+
|
|
189
|
+
## Links
|
|
190
|
+
|
|
191
|
+
- [Slide format reference](https://agenticdecks.com/deckrun)
|
|
192
|
+
- [Pricing](https://agenticdecks.com/pricing)
|
|
193
|
+
- [Agentic Decks](https://agenticdecks.com)
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
deckrun_mcp.py
|
|
4
|
+
deckrun_mcp_http.py
|
|
5
|
+
pyproject.toml
|
|
6
|
+
deckrun_mcp.egg-info/PKG-INFO
|
|
7
|
+
deckrun_mcp.egg-info/SOURCES.txt
|
|
8
|
+
deckrun_mcp.egg-info/dependency_links.txt
|
|
9
|
+
deckrun_mcp.egg-info/entry_points.txt
|
|
10
|
+
deckrun_mcp.egg-info/requires.txt
|
|
11
|
+
deckrun_mcp.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|