moviecom-mcp

moviecom-mcp

MCP server for querying movie schedules and seat availability from Moviecom.

Category
Visit Server

README

moviecom-mcp

Servidor MCP (Model Context Protocol) para consultar programação de filmes e disponibilidade de assentos da Moviecom.

Objetivo do projeto

Este projeto expõe ferramentas MCP para:

  • Buscar a programação de filmes em cartaz.
  • Consultar assentos disponíveis de uma sessão específica.
  • Listar filmes e enriquecer cada sessão com dados de disponibilidade.

Com isso, clientes MCP (como assistentes e integrações) conseguem consumir esses dados de forma estruturada via stdio.

Pré-requisitos

  • Node.js 18+ (recomendado 20+).
  • npm.

Instalação

  1. Clone o repositório:
git clone git@github.com:Santosl2/moviecom-mcp.git
cd moviecom-mcp
  1. Instale as dependências:
npm install

Como usar

1) Executar o servidor MCP

Este projeto roda como servidor MCP em stdio.

node src/server.js

Observação: no estado atual do projeto, prefira o comando acima (o script npm start aponta para server.js na raiz).

2) Ferramentas disponíveis

O servidor registra as seguintes tools:

  1. moviecom_programming
  • Retorna a programação de filmes.
  • Input:
{
	"date": "2026-07-30"
}
  1. moviecom_available_seats
  • Retorna assentos disponíveis de uma sessão.
  • Input:
{
	"sessionId": "11f18ab7ae7ca66580e69ae9bbbc5a12"
}
  1. moviecom_movies
  • Retorna filmes e tenta anexar disponibilidade de assentos em cada sessão.
  • Input:
{
	"date": "2026-07-30"
}

3) Exemplo de saída (resumido)

[
	{
		"title": "A Odisseia",
		"classification": "14",
		"duration": "172 minutos  ·  Ação, Fantasia",
		"image": "https://...jpg",
		"programations": [
			{
				"type": "DUB",
				"room": "Sala 1",
				"hour": "18:00",
				"url": "https://moviecom.com.br/vendasessao/?idprog=...",
				"chairs": {
					"total": 152,
					"available": 19,
					"occupied": 130,
					"blocked": 3,
					"seats": [
						{
							"id": "A17",
							"name": "A17",
							"row": 1,
							"column": 17,
							"sector": null,
							"kind": null
						}
					]
				}
			}
		]
	}
]

Estrutura do projeto

src/
	functions.js   # parsing e coleta de dados
	server.js      # servidor MCP e registro das tools
moviecom.json    # exemplo de payload/resultado

Tecnologias

  • @modelcontextprotocol/server
  • cheerio
  • zod

Observações

  • As consultas dependem dos endpoints externos da Moviecom/VeloxTickets.
  • Se a estrutura HTML/endpoint mudar, o parser pode precisar de ajustes.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured