pyproject.toml•628 B
[build-system]
requires = ["uv_build>=0.8.15,<0.9.0"]
build-backend = "uv_build"
[project]
name = "imdb-mcp-server"
version = "0.1.0"
description = "A Python server implementing Model Context Protocol (MCP) for movie and TV show information using the IMDb API service"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"mcp[cli]>=1.19.0",
"requests>=2.32.5",
"smithery>=0.4.4",
"uvicorn>=0.24.0",
]
[project.scripts]
dev = "smithery.cli.dev:main"
playground = "smithery.cli.playground:main"
imdb-server = "imdb_mcp_server.main:main"
[tool.smithery]
server = "imdb_mcp_server.main:create_server"