Orshot
Orshot's MCP Server lets you dynamically generate images from your templates from your prompts in Claude, Cursor or any app that supports MCP Servers. You can use the pre-designed templates and also AI Generate or design your own templates in Orshot, and then generate images from those templates
README Documentation
Orshot MCP Server
Orshot is an Image, PDF and Video Generation API which lets you generate dynamic images from pre-designed and AI generated templates via API and Integrations
Orshot's MCP Server lets you dynamically generate images from your templates from your prompts in Claude, Cursor or any app that supports MCP Servers
How to Use
Video Demo
https://github.com/user-attachments/assets/1b9641ba-41cd-4f0b-9538-c71171c29e24
Quick Connect (Remote)
The easiest way to use the Orshot MCP Server is to connect to our hosted remote server.
Server URL: https://mcp.orshot.com/sse
Since the remote server is shared, you must provide your Orshot API Key in your prompt (e.g., "Generate a website screenshot of apple.com. Here is my API key: os-...") or configure your MCP client to send it.
Cursor (Agent Mode)
- Settings > General > MCP Servers
- Add new MCP server
- Select SSE and enter
https://mcp.orshot.com/sse
VS Code (MCP Extension)
Add to .vscode/mcp.json or your global configuration:
{
"servers": {
"orshot": {
"type": "sse",
"url": "https://mcp.orshot.com/sse"
}
}
}
Local Installation (Advanced)
For developers who want to run the server locally or contribute.
-
Clone and Build:
git clone https://github.com/rishimohan/orshot-mcp-server cd orshot-mcp-server npm install && npm run build -
Configure Claude Desktop: Add to
claude_desktop_config.json:{ "mcpServers": { "orshot": { "command": "node", "args": ["/absolute/path/to/orshot-mcp-server/build/index.js"], "env": { "ORSHOT_API_KEY": "your-api-key" } } } }
Examples
Here are some example prompts you can use with Orshot's MCP Server
- generate a mockup using studio template id 64 with this image https://example.com/logo.png
- generate a website screenshot of github.com using orshot
- generate image using orshot from "Ad banner" studio template with heading "Grow your business" and subheading "Get your ebook now"
- list all studio templates in orshot
- generate this tweet's screenshot using orshot https://x.com/TheCatsX/status/1941620988279652599
Features
This MCP server exposes nine tools for working with Orshot:
Template Discovery
- Get Library Templates - List all available library templates for your account
- Get Studio Templates - List all available studio templates for your account
- Get Template Modifications - Get available parameters/modifications for any template
Image & Media Generation
- Generate Image - Unified tool with automatic template detection (recommended). Supports Images (PNG, JPG, WEBP), PDFs, and Videos (MP4, WEBM, GIF).
- Generate Image From Library Template - Generate images from Orshot library templates
- Generate Image From Studio Template - Generate images, PDFs or videos from Orshot Studio templates
Documentation & Help
- Get Orshot Docs - Fetch the latest documentation directly from Orshot
- List Docs Topics - List available documentation topics
Utilities
- Check API Status - Test API connectivity and validate your API key
New Capabilities
- Video Generation: Create MP4, WebM, or GIF videos from Studio templates.
- PDF Generation: Generate multi-page PDFs with custom DPI and margins.
- Documentation Integration: Ask the agent to look up Orshot documentation for you.
Local Development
# 1. Install and build
npm install && npm run build
# 2. Configure (required)
export ORSHOT_API_KEY="your-api-key-here"
# 3. Run production server
npm start
Getting Help
If you experience any issues:
- Check the Orshot API documentation
- Verify your account status at Orshot Dashboard
- Contact Orshot support at hi@orshot.com if API issues persist
Development
# Install dependencies
npm install
# Build the project
npm run build
# Run in development mode
npm run dev
License
ISC