- Home
- MCP servers
- MulmoCast Vision
MulmoCast Vision
- typescript
0
GitHub Stars
typescript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"receptron-mulmocast-vision": {
"command": "npx",
"args": [
"mulmocast-vision@latest"
]
}
}
}MulmoCast Vision uses MCP (Model Context Protocol) to run a local or remote AI-enabled service that generates presentation slides from natural language prompts. By connecting through MCP, you can issue simple instructions to produce professional slide decks, manage outputs, and export to PDF with automatic saving for easy access and sharing.
How to use
You interact with a compatible MCP client to generate slides. Start the client, then provide a concise instruction such as asking for a corporate analysis or a complete slide deck outline. The system will produce slides, save them automatically to your designated folder, and offer options to export as a PDF. You can command the generation to create slides for each page, update specific slides, or generate a full PDF of all slides or only selected slides.
How to install
Prerequisites: ensure you have Node.js installed on your system and access to an MCP-capable client (for example Claude Desktop or another MCP-compatible tool). You will run the MCP client through npx without a global install.
-
Confirm you have npm and npx available in your environment. If npx is missing, install Node.js which includes npm and npx.
-
Add the MCP configuration to your MCP client. Use the following example configuration for a stdio-based, local runtime.
{
"mulmocast-vision": {
"command": "npx",
"args": [
"mulmocast-vision@latest"
],
"transport": {
"stdio": true
}
}
}
Configuration details
Inside your MCP client configuration, reference the mulmocast-vision entry so that starting the client will spawn the tool using npx with the latest release. If your environment requires an explicit npx path, replace the command with the full path to npx.