├── Dockerfile ├── LICENSE ├── README.md ├── pyproject.toml ├── smithery.yaml └── src └── mcp_git_ingest ├── __init__.py └── main.py /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhikasp/mcp-git-ingest/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhikasp/mcp-git-ingest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhikasp/mcp-git-ingest/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhikasp/mcp-git-ingest/HEAD/pyproject.toml -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhikasp/mcp-git-ingest/HEAD/smithery.yaml -------------------------------------------------------------------------------- /src/mcp_git_ingest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mcp_git_ingest/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhikasp/mcp-git-ingest/HEAD/src/mcp_git_ingest/main.py --------------------------------------------------------------------------------