home / mcp / jsoncut mcp server
Provides API-driven image and video config creation, validation, and schema access for automation.
Configuration
View docs{
"mcpServers": {
"jsoncut-jsoncut-mcp-server": {
"url": "https://mcp.jsoncut.com/mcp",
"headers": {
"X-API-Key": "your_jsoncut_api_key_here",
"JSONCUT_API_KEY": "your_api_key_here"
}
}
}
}You can run a Model Context Protocol (MCP) Server to enable AI agents to create image and video configurations, validate them, and access schema resources. This serves as a bridge between your automation workflows and the Jsoncut API, making it easy to generate media configurations programmatically and securely.
Connect your MCP client to the public remote server for quick, no-install usage, or run a local MCP server for development and offline work.
Remote usage is configured with a server URL and your API key. For example, point your MCP client at the public server and pass your API key in the request headers to authorize calls.
{
"jsoncut": {
"url": "https://mcp.jsoncut.com/mcp",
"headers": {
"X-API-Key": "your_jsoncut_api_key_here"
}
}
}If you prefer to run a local MCP server for development, you can start it with npx. This keeps your environment self-contained and avoids network calls during initial setup.
export JSONCUT_API_KEY=your_api_key_here
npx -y @jsoncut/mcp-serverCreate JSON configurations for image generation with a layer-based system including images, text, shapes, and gradients.
Create JSON configurations for video generation with clips, layers, transitions, and audio.
Validate image or video configurations against the Jsoncut API before submission to ensure correctness and resource usage.
Retrieve the complete image generation schema to understand all available options for image configs.
Retrieve the complete video generation schema to understand all available options for video configs.
Interactively test and inspect MCP configurations against your API key using the MCP Inspector.