[project]
name = "ffmpeg-mcp-lite"
version = "0.2.1"
description = "MCP server providing video and audio processing capabilities through FFmpeg"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [
{ name = "Kevin Watt", email = "kevin@watt.tw" }
]
keywords = ["mcp", "ffmpeg", "video", "audio", "ai", "claude", "model-context-protocol"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Sound/Audio",
]
dependencies = [
"mcp>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/kevinwatt/ffmpeg-mcp-lite"
Repository = "https://github.com/kevinwatt/ffmpeg-mcp-lite"
Issues = "https://github.com/kevinwatt/ffmpeg-mcp-lite/issues"
[project.scripts]
ffmpeg-mcp-lite = "ffmpeg_mcp_lite:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/ffmpeg_mcp_lite"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"mypy>=1.0.0",
"ruff>=0.1.0",
]