- Implemented `generate_mermaid_with_instances.py` to create ER diagrams that include all classes, relationships, enum values, and instance data. - Loaded instance data from YAML files and enriched enum definitions with meaningful annotations. - Configured output paths for generated diagrams in both frontend and schema directories. - Added support for excluding technical classes and limiting the number of displayed enum and instance values for readability.
20 lines
446 B
TOML
20 lines
446 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.27.0",
|
|
"mcp>=1.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"
|