Search for a command to run...
MCP Remote URL: https://mcp.orshot.com/sse
Github Repository: https://github.com/rishimohan/orshot-mcp-server
The Orshot Model Context Protocol (MCP) Server allows you to generate dynamic images from templates directly within AI applications like Claude Desktop, Cursor, and other MCP-compatible tools. This integration enables natural language image generation, making it easy to create visuals through conversational prompts.
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 will need to provide your Orshot API Key in your prompt when using the tools, or configure your MCP client to send it if supported.
https://mcp.orshot.com/sseIf you are using the MCP extension in VS Code, add this to your .vscode/mcp.json or global configuration:
{
"servers": {
"orshot": {
"type": "sse",
"url": "https://mcp.orshot.com/sse"
}
}
}Look for "Remote MCP" or "SSE" configuration options in your client and enter the URL https://mcp.orshot.com/sse.
Run the server locally to bypass passing your API key in every prompt.
npm install && npm run buildAdd the server to your Claude Desktop configuration in claude_desktop_config.json. This allows you to set the ORSHOT_API_KEY environment variable once.
{
"mcpServers": {
"orshot": {
"command": "node",
"args": ["/path/to/orshot-mcp-server/build/index.js"],
"env": { "ORSHOT_API_KEY": "your-api-key" }
}
}
}