greenroom
Integrates with a local Ollama instance to facilitate multi-agent workflows and provide tools for comparing prompt responses across different large language models.
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., "@greenroomRecommend some highly-rated Spanish language horror films from the 2010s."
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.
greenroom
A python package containing an MCP server that coordinates outreach to multiple LLMs, integrates with external content providers, and provides custom tooling to agents with the goal of producing high-value, hybrid human-AI curation of entertainment recommendations.
As of 2026, greenroom provides recommendations on film and television content. I plan to integrate with additional data providers and LLM services to broaden the offering.
Discover films and television using hybrid human-AI curation

Compare outputs of multiple agents and models

Use Cases
The greenroom MCP server can be used to answer a wide range of questions related to entertainment. Below are some example prompts that will trigger the use of multiple MCP tools, but these are just examples.
Recommendations
What kinds of entertainment can you recommend?I'm in the mood for something serious. Recommend some entertainment content.Recommend spanish language documentary films from the 2010s.I loved Atlanta and Black Mirror. Recommend other entertainment options that I would like.
Event Planning
I'm hosting a French film night. Recommend highly-rated French films across genres.Plan a binge-watching weekend including recent dramas and comedies.Let's host a sci-fi movie marathon. Recommend 5 sci-fi films from different decades.
Industry Analysis
Analyze which genres have the highest average ratings in film vs television.Compare action films made in the 1980s to those made in the 2020s.What are the top-rated spanish language television shows in each genre?
Compare the output of multiple agents
Using compare_llm_responses, what makes a great science fiction film?Using the compare_llm_responses tool, how is machine learning used in modern filmmaking?
Related MCP server: moviefinder-mcp
Features
Tools
Category | Tool | Description |
Genres | list_genres | Fetches all entertainment genres, returning a unified map showing which media types support each genre |
Genres | categorize_genres | Maps human moods to media genres to improve hit rate from human prompts |
Films | discover_films | Retrieves list of films based on selected criteria. Returns metadata for informed responses and optimized categorization. |
Films | search_films | Looks up films by title. Search can be optionally narrowed by release year. Returns the same metadata shape as discover_films. |
Television | discover_television | Retrieves list of television shows based on selected criteria. Returns metadata for informed responses and optimized categorization. |
Television | search_television | Looks up television shows by title. Search can be optionally narrowed by release year (year of first airing). Returns the same metadata shape as discover_television. |
MCP tools are callable actions, analogous to POST requests, that an agent executes. They are annotated with @mcp.tool() in the FastMCP framework.
Coordination of Agents
This server supports the coordination of multiple agents to work on a single task.
compare_llm_responses - Receives a prompt and fields it out to two agents. It constrains the responses by temperature and token limit.
To trigger this tool, ask the agent: Using the compare_llm_responses tool, why is the ocean blue?
You should see: Both a resampled response and an ollama response Response lengths comparison Structured JSON output showing both LLM outputs side-by-side
As of 2026, this defaults to comparing the response from a resampling of the current client to a response from a new ollama client. If you use the server with Claude, the resampled response will be null because Anthropic forbids resampling.
Contexts
Context-aware tools use FastMCP's Context parameter to access advanced MCP features like LLM sampling.
Example:
list_genres_simplified - Returns a simplified list of genre names by using
ctx.sample()to leverage the agent's LLM capabilities for data transformation.
Resources
These resources provide read-only data, analogous to GET requests. An agent reads the information but does not perform actions.
Resources are annotated with @mcp.resource() in the FastMCP framework.
config://version - Get server version
Error Handling
All errors raised by the greenroom server use a custom exception hierarchy rooted in GreenroomError.
This means MCP callers can catch GreenroomError to handle any server-side failure, or catch a specific subclass for finer control:
APIResponseError - HTTP errors, invalid JSON, unexpected response bodies from external APIs
APIConnectionError - Network or connectivity failures when reaching external APIs
APITypeError - Response had an unexpected python type after deserialization
SamplingError - Errors during LLM sampling
Built-in exceptions like ValueError are still raised for input validation (e.g., invalid parameters).
Architecture
Tools Layer (MCP Interface)
↓
Services Layer (Business Logic)
↓
Client Layer (Provider-specific HTTP Communication)
↓
Models Layer (Provider-agnostic Data Structures)Project Structure
This project follows the python package src/ layout to support convenient packaging and testing. Below is a simplified diagram of the project.
greenroom/
├── src/
│ └── greenroom/ # python package
│ │
│ ├── server.py # primary entry point to server
│ ├── config.py # centralized configuration
│ ├── utils.py # shared utilities
│ │
│ │
│ ├── models/ # data models
│ │
│ ├── services/ # business logic
│ │ ├── llm/ # LLM agent services and clients
│ │ ├── tmdb/ # TMDB provider services and clients
│ │ └── protocols.py # standardizes methods across media providers
│ │
│ └── tools/ # MCP tools (exposed via FastMCP)
│ ├── agent_tools.py # coordinate multiple agents and LLMs
│ ├── genre_tools.py # optimize genre discovery and presentation to user
│ └── media/ # tools for retrieving entertainment content
│ ├── discover_tools.py # browse the catalog by filter criteria
│ └── search_tools.py # look up a specific title by name
│
├── tests/greenroom/ # test suite
│
├── pyproject.toml # configuration and dependencies
└── uv.lock # dependency lock file (auto-generated)Dependencies
python >=3.10
FastMCP >=2.13.0; MCP server framework; requires python 3.10+
uv: package manager
Hatchling: build system
httpx: network calls to external data sources
python-dotenv: API key management
ollama (optional): local LLM runtime for multi-agent tools like
compare_llm_responses
I chose FastMCP framework for this project, because it requires minimal boilerplate. In previous projects, I used alternative frameworks like MCP Python SDK to understand more fundamental mechanics.
Setup
Create local development environment
# Clone the repository
git clone <repository-url>
cd greenroom
# Install dependencies (uv will create a virtual environment automatically)
uv syncAdd TMDB api key as environment variable
Get a free API key at TMDB by creating an account, going to account settings, and navigating to the API section.
Create a file called
.envat the top level of the project. (This file is gitignored to prevent committing secrets.)Copy the content of
.env.exampleto your new file.Replace
your_tmdb_api_key_herein .env with the actual TMDB API key.
(optional) Setup ollama
To use ollama as a second agent (in addition to Claude). An example of usage is the compare_llm_responses tool.
Install ollama Download from https://ollama.com/download.
Start ollama service Open ollama desktop application or start from terminal:
ollama servePull the default model The
compare_llm_responsestool defaults to llama3.2:latest as of 2026.
ollama pull llama3.2Verify the model is available.
ollama listTest ollama is working
curl http://localhost:11434/api/generate -d '{"model": "llama3.2", "prompt": "Why is the sky blue?", "stream": false}'Expected response will look something like the below.
{
"model":"llama3.2",
"created_at":"2025-11-30T12:01:32.314915Z",
"response":"The sky appears blue because of a phenomenon called Rayleigh scattering...
...
}Usage
Regardless of your preferred platform, exercising the server is fairly standardized.
/mcpwill display the server with access to the list of tools and their descriptions.Tools will automatically be used during conversations.
To explicitly test a tool, ask that agent to call the tool. e.g.
Call the <name-of-tool> tool from the greenroom MCP server to answer the following:...If you update any tools, you must
/reloada session for the updates to become available.
via vibe CLI
Add the server configuration to a local toml file
Create
.vibe/directory at the top-level of the project. Createconfig.tomlfile within that directory.Add the below to
config.toml.
[[mcp_servers]] name = "greenroom" transport = "stdio" command = "uv" args = [ "--directory", "/ABSOLUTE/PATH/TO/PROJECT", "run", "python", "src/greenroom/server.py" ] startup_timeout_sec = 15.0Exercise in vibe CLI
vibeto open a fresh sessionType
/mcpto view available MCP servers.Confirm that greenroom is one of them with status: connected.
via claude CLI
Update local claude settings and start the server
claude mcp add greenroom --scope project -- uv --directory /ABSOLUTE/PATH/TO/PROJECT run python src/greenroom/server.pyExercise in claude CLI
claudeto open a fresh sessionType
/mcpto view available MCP servers.Confirm that greenroom is one of them with status: connected.
via claude desktop app
Open the claude desktop app.
Confirm the desktop app is connected to the greenroom server:
Navigate to Settings.
Click on "Developer". Local MCP Servers should appear.
The greenroom server should be listed there and it should have status: running.
If it is not running, click on 'Edit Config'. Then follow the instructions in the Troubleshooting section below.
Development
Run the MCP server locally
The server will start and communicate via stdin/stdout. It uses stdio by default, which is the standard transport for local MCP servers.
uv run greenroom # recommended: uses the MCP entry point
uv run python src/greenroom/server.py # alternativeNB: You should not run the server directly (e.g. uv run <path to server.py>) because the server is part of a python package.
Running it directly would break the module resolution.
Inspect using MCP Inspector (web ui)
npx @modelcontextprotocol/inspector uv --directory /ABSOLUTE/PATH/TO/PROJECT run python src/greenroom/server.pyRun tests
The test suite includes a kickoff of the mypy type checker.
uv run pytest # fast unit and integration tests; excludes external tests that make real network calls
uv run pytest -m external # tests that make real network calls to confirm contractsDesign Note: The @mcp.tool() decorator wraps functions into a FunctionTool objects, which prevents the decorated function from being callable as a plain function.
To ease testability and provide modular interfaces, I delegated the logic within each tool to high-level public orchestration methods, which can be tested without spinning up a server and which use shared utility modules.
The remaining top-level registration layer of each tool is covered separately by registration tests, which build an in-memory FastMCP server to verify the tool names, parameter schemas, and the arguments each tool forwards to its delegate.
Troubleshooting
claude CLI troubleshooting
Confirm correctness of the local claude configuration.
When you run the setup command (claude mcp add ... --scope project), a configuration for that MCP server is added to a .mcp.json file at the project root.
This is a different than the configuration file that the claude desktop app uses.
Align your local
.mcp.jsonwith the below.Replace
/ABSOLUTE/PATH/TO/PROJECTwith the actual path to the project directory (not the package directory) on your local machine.Replace
/ABSOLUTE/PATH/TO/UV/LIBRARYwith the actual path to uv on your local machine. On mac,which uvshould print out this directory.
{
"mcpServers": {
"greenroom": {
"command": "/ABSOLUTE/PATH/TO/UV/LIBRARY",
"args": [
"--directory",
"/ABSOLUTE/PATH/TO/PROJECT",
"run",
"python",
"src/greenroom/server.py"
]
}
}
}When experiencing configuration issues, sometimes it helps to remove the mcp server from your local machine and add it back again.
Remove the local configuration.
claude mcp remove greenroomUpdate the local configuration and run the MCP server.
claude mcp add greenroom --scope project -- uv --directory /ABSOLUTE/PATH/TO/PROJECT run python src/greenroom/server.pyclaude desktop app troubleshooting
Confirm correctness of local claude desktop configuration
Clicking "Edit Config" in the Developer settings (see the Usage section above) opens claude_desktop_config.json in your default text editor.
This is a different configuration file than the CLI uses and it applies globally across every project opened in the desktop app rather than to a single project.
On Mac, this file generally lives at
~/Library/Application Support/Claude/claude_desktop_config.json.Replace
/ABSOLUTE/PATH/TO/PROJECTwith the actual path to the project directory (not the package directory) on your local machine.Replace
/ABSOLUTE/PATH/TO/UV/LIBRARYwith the actual path to uv on your local machine. On mac,which uvshould print out this directory.
{
"mcpServers": {
"greenroom": {
"command": "/ABSOLUTE/PATH/TO/UV/LIBRARY",
"args": [
"--directory",
"/ABSOLUTE/PATH/TO/PROJECT",
"run",
"python",
"src/greenroom/server.py"
]
}
}
}When experiencing configuration issues, sometimes it helps to remove the mcp server entry and add it back again.
Remove the
greenroomentry fromclaude_desktop_config.jsonand save the file.Re-add the
greenroomentry (matching the JSON above) and save the file.Fully quit and reopen the claude desktop app for the change to take effect.
Underlying Mechanics
The
pyproject.tomlfile declares thefastmcpdependency managed by uvWhen an agent starts, it launches this MCP server as a subprocess using the configured command
uvautomatically manages the virtual environment and dependenciesThe server advertises its available resources and tools (e.g. the
tools/listJSON-RPC method)During conversations, the agent can automatically call these tools when relevant
The server executes the requested tool and returns results to the agent
The agent incorporates the results into its response to you
Future Development
Add more media types (e.g., podcasts, books)
Add providers to augment data sources
Add an entertainment concierge experience (e.g., manager agent flow)
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseDqualityDmaintenanceAn MCP server that allows users to search for movies, get detailed information, receive genre-based recommendations, and discover popular/trending films using OMDb and TMDb APIs.513MIT
- FlicenseAqualityDmaintenanceAn MCP server that wraps The Movie Database (TMDB) API, enabling search for movies and TV shows, retrieval of movie details, recommendations, similar movies, trending content, streaming providers, and movie discovery.8
- FlicenseAqualityDmaintenanceAn MCP server that wraps the TMDB API, enabling search of movies and TV shows, retrieval of details, trending titles, recommendations, and streaming provider information.8
- FlicenseNot gradedqualityDmaintenanceA robust MCP server that wraps The Movie Database API, enabling LLMs to search movies, get details, popular movies, and recommendations.
Related MCP Connectors
MCP server exposing the Backtest360 engine API as tools for AI agents.
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.
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/chrisbrickey/greenroom'
If you have feedback or need assistance with the MCP directory API, please join our Discord server