- Home
- MCP servers
- IMDB
IMDB
- typescript
3
GitHub Stars
typescript
Language
4 months ago
First Indexed
3 weeks ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"clsung-mcp-imdb": {
"command": "uv",
"args": [
"--directory",
"<dir_to>/git/mcp-imdb",
"run",
"mcp-imdb"
]
}
}
}You run an MCP server that exposes a simple note system and a single prompt to summarize notes. It lets you add notes and access them via a note:// URI, making it easy to store and retrieve small pieces of contextual information for use with MCP clients.
How to use
You interact with the server through an MCP client. The server exposes two primary capabilities you will use: add-note to store new notes and summarize-notes to generate a concise summary across all stored notes. Notes are accessible via a custom note:// scheme, where each note has a name, a short description, and a text/plain body. Use add-note to enrich the server state, then invoke summarize-notes with an optional style (brief or detailed) to create an up-to-date summary that you can present to users or use in further prompts.
How to install
Prerequisites: Node.js with npm or the UVX runtime for MCPs, and any MCP client you plan to use. You will install or run the MCP server using one of the predefined MCP runtime configurations.
// Development/Unpublished Servers Configuration
{
"mcpServers": {
"mcp_imdb_dev": {
"command": "uv",
"args": [
"--directory",
"<dir_to>/git/mcp-imdb",
"run",
"mcp-imdb"
]
}
}
}
Or, use the published configuration to run a prebuilt server with UVX. This is the simpler option for production or quick testing.
{
"mcpServers": {
"mcp_imdb_pub": {
"command": "uvx",
"args": [
"mcp-imdb"
]
}
}
}
Additional sections
Configuration options are provided as explicit MCP server entries. There are two distinct runtime approaches you can adopt: development (uv with a directory path) and published (uvx with a named server). Ensure you choose the approach that matches your environment and deployment plan.
Available tools
add-note
Adds a new note to the server with a required name and content, updating the server state and notifying clients of changes.
summarize-notes
Generates a summary of all stored notes, with an optional style parameter to control the detail level (brief or detailed).