├── .gitignore ├── LICENSE ├── README.md ├── assets └── notebook-mcp-logo.png ├── install_unix.sh ├── install_windows.ps1 ├── requirements.txt └── server.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaK98/python-notebook-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaK98/python-notebook-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaK98/python-notebook-mcp/HEAD/README.md -------------------------------------------------------------------------------- /assets/notebook-mcp-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaK98/python-notebook-mcp/HEAD/assets/notebook-mcp-logo.png -------------------------------------------------------------------------------- /install_unix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaK98/python-notebook-mcp/HEAD/install_unix.sh -------------------------------------------------------------------------------- /install_windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaK98/python-notebook-mcp/HEAD/install_windows.ps1 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaK98/python-notebook-mcp/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UsamaK98/python-notebook-mcp/HEAD/server.py --------------------------------------------------------------------------------