├── .gitignore ├── .python-version ├── Dockerfile ├── LICENSE ├── README.md ├── pyproject.toml ├── smithery.yaml ├── src └── gitingest_mcp │ ├── __init__.py │ ├── ingest.py │ └── server.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | .DS_Store 3 | **/*.egg-info 4 | __pycache__/ 5 | other -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puravparab/Gitingest-MCP/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puravparab/Gitingest-MCP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puravparab/Gitingest-MCP/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puravparab/Gitingest-MCP/HEAD/pyproject.toml -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puravparab/Gitingest-MCP/HEAD/smithery.yaml -------------------------------------------------------------------------------- /src/gitingest_mcp/__init__.py: -------------------------------------------------------------------------------- 1 | """Gitingest MCP server module.""" 2 | 3 | __version__ = "0.1.0" -------------------------------------------------------------------------------- /src/gitingest_mcp/ingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puravparab/Gitingest-MCP/HEAD/src/gitingest_mcp/ingest.py -------------------------------------------------------------------------------- /src/gitingest_mcp/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puravparab/Gitingest-MCP/HEAD/src/gitingest_mcp/server.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puravparab/Gitingest-MCP/HEAD/uv.lock --------------------------------------------------------------------------------