Orshot
The Orshot MCP Server enables dynamic image, PDF, and video generation from templates through Claude, Cursor, or any MCP-compatible application.
Capabilities:
Template Discovery: List available library and studio templates, retrieve modifiable parameters and data fields for any template, and reference templates by ID or name.
Media Generation: Generate images, PDFs, and videos from library or studio templates with automatic template type detection and support for multiple formats (PNG, JPG, PDF, MP4, WebM, GIF).
Dynamic Customization: Provide text replacements, color changes, and variable data, with automatic URL-to-image mapping for studio templates.
Flexible Output: Choose from multiple response types (URL, base64, binary) and configure webhooks for asynchronous rendering notifications.
API Management: Validate API connectivity and check API key status.
Documentation Access: Fetch Orshot documentation and list available topics directly within the MCP environment.
Deployment Options: Connect to a hosted server or run locally for development and customization.
Enables generating website screenshots of GitHub pages through the Orshot API
Mentioned as a potential environment for running the MCP server, which may require specific node path configuration
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Orshotgenerate a website screenshot of orshot.com using the 'Website Mockup' template"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 buildConfigure 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" } } } }
Related MCP server: Image Generator MCP Server
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 startGetting 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 devLicense
ISC
Available Tools
7 toolscheck-api-statusA
Check the API connectivity and validate the API key
| Name | Required | Description | Default |
|---|---|---|---|
| apiKey | No | Orshot API key for authentication (optional if set in environment) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It mentions authentication validation but doesn't describe what happens during the check (e.g., what tests are performed, what response indicates success/failure, rate limits, or error conditions). For a connectivity validation tool with zero annotation coverage, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero wasted words. It's appropriately sized for a simple tool and front-loads the core purpose immediately.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple connectivity check tool with 100% schema coverage but no annotations and no output schema, the description is adequate but has clear gaps. It covers the basic purpose but lacks details about behavioral aspects, response format, and error handling that would be helpful for an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents the single parameter. The description adds marginal value by mentioning authentication validation context but doesn't provide additional syntax, format, or usage details beyond what the schema provides. Baseline 3 is appropriate when schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Check') and resource ('API connectivity'), and distinguishes it from sibling tools focused on image generation and template retrieval by focusing on API health validation. It provides a complete verb+resource+scope combination.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context (validating API connectivity and key) but doesn't explicitly state when to use this tool versus alternatives or when not to use it. It provides clear functional purpose but lacks explicit comparative guidance with sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate-imageB
Generate an image from an Orshot template (automatically detects library vs studio template). For studio templates, automatically maps URLs to appropriate image fields and supports template names.
| Name | Required | Description | Default |
|---|---|---|---|
| apiKey | No | Orshot API key for authentication (optional if set in environment) | |
| templateId | Yes | The ID or name of the template to use (will auto-detect if it's library or studio). Numeric IDs are likely studio templates. Studio templates can also be referenced by name. | |
| modifications | No | Object containing modifications/data to apply to the template (works for both library and studio templates). URLs will be auto-mapped to image fields for studio templates. | |
| format | No | Output format for the generated image | png |
| responseType | No | Response type: base64 data, download URL, or binary data | url |
| webhook | No | Optional webhook URL to receive notifications (studio templates only) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions automatic detection and URL mapping for studio templates, which adds some context, but fails to cover critical aspects like authentication requirements (implied by apiKey parameter), rate limits, error handling, or what the tool returns (only hints at responseType). For a tool with 6 parameters and no annotations, this is insufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately concise with two sentences that are front-loaded with the core functionality. Each sentence adds value: the first states the purpose and auto-detection, the second details studio-specific features. There's no redundant information, though it could be slightly more structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (6 parameters, nested objects, no output schema, and no annotations), the description is incomplete. It doesn't explain the output (e.g., what a 'url' response contains), error conditions, or how modifications interact with template types. For a generative tool with multiple parameters and siblings, more context is needed to guide effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, providing detailed documentation for all parameters. The description adds minimal value beyond the schema, only reiterating that templateId auto-detects library/studio and that modifications work for both types. It doesn't explain parameter interactions or provide usage examples, so it meets the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Generate an image from an Orshot template' with the specific action of automatic detection between library and studio templates. It distinguishes itself from siblings like 'generate-image-from-library' and 'generate-image-from-studio' by handling both types automatically, though it doesn't explicitly contrast with all siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use this tool by mentioning it 'automatically detects library vs studio template', suggesting it's a general-purpose alternative to the more specific sibling tools. However, it lacks explicit guidance on when to choose this over 'generate-image-from-library' or 'generate-image-from-studio', or any prerequisites like authentication needs.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate-image-from-libraryB
Generate an image from an Orshot library template using specified modifications
| Name | Required | Description | Default |
|---|---|---|---|
| apiKey | No | Orshot API key for authentication (optional if set in environment) | |
| templateId | Yes | The ID of the library template to use | |
| modifications | No | Object containing modifications to apply to the template (e.g., text replacements, color changes) | |
| format | No | Output format for the generated image | png |
| responseType | No | Response type: base64 data, download URL, or binary data | url |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions 'specified modifications' but doesn't explain what happens during generation (e.g., processing time, error handling, or output characteristics). For a tool that creates content, this lack of detail on behavior is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose without unnecessary words. Every part earns its place by specifying the action, resource, and key input aspect. It's appropriately sized for the tool's complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 5 parameters with full schema coverage but no annotations or output schema, the description is minimally adequate. It covers the basic purpose but lacks behavioral details (e.g., what the output looks like, error cases) and usage context. For a generation tool with no output schema, more completeness would be helpful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents all 5 parameters. The description adds minimal value beyond the schema by implying modifications are applied to templates, but doesn't provide additional context like examples or constraints. Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('generate an image') and resource ('from an Orshot library template'), specifying the source of templates. It distinguishes from 'generate-image' (general) and 'generate-image-from-studio' (different source), but doesn't explicitly mention sibling differentiation. The purpose is specific and actionable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'generate-image' or 'generate-image-from-studio'. It mentions the template source but doesn't explain why to choose library templates over studio templates or other options. No prerequisites or exclusions are stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate-image-from-studioB
Generate an image from an Orshot Studio template using specified data modifications. Automatically maps URLs to appropriate image fields in the template. You can use either the template ID (numeric) or template name.
| Name | Required | Description | Default |
|---|---|---|---|
| apiKey | No | Orshot API key for authentication (optional if set in environment) | |
| templateId | Yes | The ID or name of the Orshot Studio template to use | |
| data | No | Object containing data to populate the template (e.g., dynamic content, variable replacements, URLs for images) | |
| format | No | Output format for the generated image | png |
| responseType | No | Response type: base64 data, download URL, or binary data | url |
| webhook | No | Optional webhook URL to receive notifications when the rendering is complete |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions automatic URL mapping and template ID/name flexibility, which adds some context. However, it lacks critical behavioral details such as whether this is a read-only or mutation operation, potential rate limits, error handling, or what happens when data modifications fail. For a tool that generates images with multiple parameters, this is insufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately concise with two sentences that front-load the core purpose. The first sentence covers the main functionality, and the second adds useful clarification about template identification. There's no wasted text, though it could be slightly more structured for clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (6 parameters, no annotations, no output schema), the description is incomplete. It doesn't explain what the tool returns (e.g., image data, error responses), behavioral constraints, or how it differs from sibling tools. While the schema covers parameters well, the overall context for an AI agent to use this tool effectively is lacking.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 6 parameters thoroughly. The description adds minimal value beyond the schema by mentioning 'Automatically maps URLs to appropriate image fields' (hinting at data parameter usage) and 'template ID (numeric) or template name' (clarifying templateId). This meets the baseline of 3 since the schema does the heavy lifting, but the description doesn't significantly enhance parameter understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Generate an image from an Orshot Studio template using specified data modifications.' It specifies the verb ('Generate'), resource ('image from an Orshot Studio template'), and mechanism ('using specified data modifications'). However, it doesn't explicitly differentiate from sibling tools like 'generate-image' or 'generate-image-from-library' beyond mentioning 'Studio template'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context by specifying 'Orshot Studio template' and mentioning template ID or name, which suggests when to use this tool. However, it doesn't provide explicit guidance on when to choose this over alternatives like 'generate-image' or 'generate-image-from-library', nor does it mention any prerequisites or exclusions beyond the optional API key.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get-library-templatesB
Get all available library templates for the user using their API key
| Name | Required | Description | Default |
|---|---|---|---|
| apiKey | No | Orshot API key for authentication (optional if set in environment) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It mentions authentication via API key but doesn't describe what 'Get all available' entails—whether it returns a list, paginated results, error conditions, or rate limits. For a read operation with zero annotation coverage, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with no wasted words. It front-loads the core purpose ('Get all available library templates') and adds necessary context about authentication. Every part earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (one optional parameter, no output schema, no annotations), the description is minimally adequate. It covers the basic purpose and authentication but lacks details on return format, error handling, or usage context relative to siblings. For a simple read tool, this is borderline viable but with clear gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents the single optional 'apiKey' parameter. The description adds marginal value by noting it's for authentication and optional if set in environment, but this is largely redundant with the schema's description. Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get') and resource ('all available library templates'), specifying it's for the user using their API key. It distinguishes from sibling 'get-studio-templates' by focusing on library templates, but doesn't explicitly contrast with other siblings like 'generate-image-from-library'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when to choose 'get-library-templates' over 'get-studio-templates' or 'generate-image-from-library', nor does it specify prerequisites or exclusions beyond the implied authentication context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get-studio-templatesC
Get all available studio templates for the user using their API key
| Name | Required | Description | Default |
|---|---|---|---|
| apiKey | No | Orshot API key for authentication (optional if set in environment) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but offers minimal behavioral insight. It mentions authentication via API key but doesn't disclose whether this is a read-only operation, what format the templates are returned in, if there are rate limits, or if it requires specific permissions. The description is functional but lacks important operational context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that states the core purpose without unnecessary words. It's appropriately sized for a simple retrieval tool, though it could be slightly more front-loaded by mentioning the resource first (e.g., 'Retrieve all available studio templates...').
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple retrieval tool with one optional parameter and no output schema, the description is minimally adequate. However, it lacks context about what 'studio templates' are, how they differ from library templates, and what the return structure looks like. With no annotations and no output schema, more completeness would be helpful for agent understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents the single optional 'apiKey' parameter. The description adds no additional parameter semantics beyond what's in the schema (e.g., no clarification on authentication precedence or format requirements). Baseline 3 is appropriate when schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get' and the resource 'all available studio templates', specifying the scope is for 'the user using their API key'. It distinguishes from siblings like 'get-library-templates' by focusing on studio templates, but doesn't explicitly contrast with other studio-related tools like 'generate-image-from-studio'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when to choose this over 'get-library-templates' for library templates, or when to use it before 'generate-image-from-studio' for generating images from studio templates. No exclusions or prerequisites are stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get-template-modificationsB
Get available modifications for a specific template (works for both library and studio templates). For studio templates, you can use either ID or name.
| Name | Required | Description | Default |
|---|---|---|---|
| apiKey | No | Orshot API key for authentication (optional if set in environment) | |
| templateId | Yes | The ID or name of the template to get modifications for | |
| templateType | No | Type of template (library, studio, or auto-detect) | auto |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions authentication via apiKey (optional if set in environment) and template handling, but doesn't describe the return format (e.g., list of modifications, JSON structure), error conditions, rate limits, or whether it's a read-only operation. This leaves significant gaps for a tool with no annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized with two sentences, front-loaded with the core purpose and followed by a clarifying detail about template handling. There is no wasted language, and every sentence contributes useful information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and no output schema, the description is incomplete for a tool with 3 parameters and behavioral complexity. It lacks details on what 'modifications' means in the return value, error handling, or operational constraints, making it inadequate for full agent understanding without additional context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters (apiKey, templateId, templateType) with descriptions and enum values. The description adds minimal value beyond the schema by noting that templateId can be ID or name for studio templates, but doesn't provide additional syntax or format details. Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Get available modifications') and resource ('for a specific template'), distinguishing it from sibling tools like get-library-templates or get-studio-templates. However, it doesn't specify what 'modifications' entail (e.g., editing options, versions, customizations), leaving some ambiguity about the exact output.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage by specifying it works for both library and studio templates and mentions ID or name for studio templates, providing some context. However, it lacks explicit guidance on when to use this tool versus alternatives like get-library-templates or get-studio-templates, and doesn't mention prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
7 tool updates
- First observed
check-api-status - First observed
generate-image - First observed
generate-image-from-library - First observed
generate-image-from-studio - First observed
get-library-templates - First observed
get-studio-templates - First observed
get-template-modifications
TDQS
Multiple tools have overlapping purposes that could cause confusion. The 'generate-image' tool claims to automatically detect library vs studio templates, making 'generate-image-from-library' and 'generate-image-from-studio' redundant. Additionally, 'get-library-templates' and 'get-studio-templates' are clearly distinct, but the generation tools create ambiguity in selection.
All tool names follow a consistent snake_case pattern with clear verb_noun structures (e.g., 'check-api-status', 'generate-image-from-library'). The naming is predictable and readable throughout the set, with no deviations in style or convention.
With 7 tools, the count is reasonable for an image generation API server. It covers core functionalities like status checks, template retrieval, and image generation, though the redundancy in generation tools slightly bloats the set without adding clear value.
The tool set provides good coverage for the Orshot image generation domain, including API validation, template listing, modification options, and image generation. A minor gap exists in lacking tools for managing or deleting generated images, but core workflows are well-supported.
Related MCP Connectors
Generate on-brand images from your AI agent: design, edit, and render templates over MCP.
Generate PDFs from templates via AI chat. Works with Claude, ChatGPT, Cursor, and any MCP client.
MCP server for Qwen Image 3 AI image generation
Build and publish Overskill apps from Cursor, Claude, ChatGPT, or any MCP client.
Related MCP Servers
- AlicenseBqualityDmaintenanceA MCP server that enables Claude and other MCP-compatible assistants to generate images from text prompts using Together AI's image generation models.14MIT
- FlicenseBqualityDmaintenanceA TypeScript-based MCP server that generates images using OpenAI's dall-e-3 model based on text prompts and saves them to a specified directory.111-
- FlicenseCqualityNot gradedmaintenanceA TypeScript-based MCP server that lets users generate images using OpenAI's dall-e-3 model by providing a prompt and image name.11-
- FlicenseCqualityDmaintenanceAn MCP server that generates images based on text prompts using Black Forest Lab's FLUX model, allowing for customized image dimensions, prompt upsampling, safety settings, and batch generation.31-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rishimohan/orshot-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server