Info About Movies
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"movie-mcp-server": {
"args": [
"-Dspring.profiles.active=stdio",
"-jar",
"/Users/shaama/Documents/openai-mcp-demo/movie-mcp-server/build/libs/movieserver_streamable-0.0.1-SNAPSHOT.jar"
],
"type": "stdio",
"command": "java"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides movie information using the OMDB API. This server supports three different transport protocols: STDIO, SSE (Server-Sent Events), and Streamable HTTP.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in entertainment
The official MCP Server for the Mux API
MCP Server for Text to Speech
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to control Unreal E…
Unity MCP Server — 268 tools for AI-assisted game development. Connect Claude, Cursor, or any MCP client to Unity Editor & Unity Hub. Scene management, GameObjects, components, builds, profiling, Shader Graph, Amplify, terrain, physics, NavMesh, animation, MPPM multiplayer & more. Free & open source by AnkleBreaker Studio.
MCP Security Weekly
Get CVE alerts and security updates for Movie Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides movie information using the OMDB API. This server supports three different transport protocols: STDIO, SSE (Server-Sent Events), and Streamable HTTP.
getMovieInfo: Retrieve comprehensive movie information by titleBuild the project:
./gradlew build
The server supports three profiles:
stdio (default): Standard input/output communicationsse: Server-Sent Events over HTTPstreamable: Streamable HTTP transportAdd one of the following configurations to your MCP client configuration file:
{
"mcpServers": {
"movie-mcp-server": {
"type": "stdio",
"command": "java",
"args": [
"-Dspring.profiles.active=stdio",
"-jar",
"/Users/shaama/Documents/openai-mcp-demo/movie-mcp-server/build/libs/movieserver_streamable-0.0.1-SNAPSHOT.jar"
]
}
}
}
{
"mcpServers": {
"movie-mcp-server-sse": {
"type": "sse",
"url": "http://localhost:8080/sse"
}
}
}
Start the SSE server:
java -Dspring.profiles.active=sse -jar build/libs/movieserver_streamable-0.0.1-SNAPSHOT.jar
{
"mcpServers": {
"movie-mcp-server-streamable": {
"type": "http",
"url": "http://localhost:8080/mcp"
}
}
}
Start the Streamable server:
java -Dspring.profiles.active=streamable -jar build/libs/movieserver_streamable-0.0.1-SNAPSHOT.jar
This project includes a Taskfile for common operations:
# Build all profiles
task build
# Build specific profile
task build-stdio
task build-sse
task build-streamable
# Run specific profile
task run-stdio
task run-sse
task run-streamable
# Build with specific profile
./gradlew bootJar -Pprofile=stdio
./gradlew bootJar -Pprofile=sse
./gradlew bootJar -Pprofile=streamable
# Run tests
./gradlew test
application.properties: Common configuration (default stdio profile)application-stdio.properties: STDIO-specific settingsapplication-sse.properties: SSE-specific settingsapplication-streamable.properties: Streamable HTTP-specific settingsThe server uses the OMDB API for movie data. The API key is configured in application.properties:
movie.api.url=http://www.omdbapi.com/?apikey=
movie.api.key=dummy
/sse/mcpOnce configured, you can use the movie tool in your MCP client:
Get information about "The Matrix"
The server will return detailed movie information including plot, cast, director, ratings, and more.