21 lines
482 B
TOML
21 lines
482 B
TOML
[project]
|
|
name = "social-media-mcp"
|
|
version = "1.0.0"
|
|
description = "MCP Server for obtaining media content from YouTube, LinkedIn, Facebook, and Instagram"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"httpx>=0.28.0,<1.0.0",
|
|
"mcp>=1.0.0",
|
|
"fastmcp>=0.4.0,<3.0.0",
|
|
"yt-dlp>=2024.0.0",
|
|
"beautifulsoup4>=4.12.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
linkedin = [
|
|
"linkedin-api>=2.0.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|