This MCP server enables the creation of images using Amazon Nova Canvas and videos using Amazon Nova Reel models through the Model Context Protocol (MCP) over SSE. It can be integrated with MCP clients like Claude Desktop or LibreChat to enhance your AI assistant's capabilities.
Before installing the MCP server, ensure you have:
The easiest way to run the MCP server is using Docker with the precompiled image.
docker-compose.yml
file with the following configuration:version: '3'
services:
mcp-server:
image: [image-name] # Replace with the actual image name
ports:
- "8961:8961"
environment:
# Add your environment variables here
# AWS credentials and configuration
docker-compose up -d
The MCP server will be accessible at http://localhost:8961.
To add the MCP server to LibreChat:
librechat.yaml
configuration filemcpServers:
media-creator:
type: sse # type can optionally be omitted
url: http://localhost:8961/sse # Replace with your actual server URL
After adding the MCP server to LibreChat:
Examples of prompts you can use:
The agent will invoke the appropriate tool (Nova Canvas for images or Nova Reel for videos) through the MCP server.
You can verify the server is running correctly by:
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.