├── .context ├── index.md ├── llms-full.txt └── modules │ ├── analysis-tools.md │ ├── database-handlers.md │ ├── email-processing.md │ └── llms-full.txt ├── .gitattributes ├── .gitignore ├── README.md ├── pyproject.toml └── src ├── EmailMetadata.py ├── MongoDBHandler.py ├── OutlookConnector.py ├── SQLiteHandler.py ├── __init__.py ├── debug_utils.py ├── mcp_server.py └── tools ├── __init__.py └── embedding_processor.py /.context/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cam10001110101/mcp-server-outlook-email/HEAD/.context/index.md -------------------------------------------------------------------------------- /.context/llms-full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cam10001110101/mcp-server-outlook-email/HEAD/.context/llms-full.txt -------------------------------------------------------------------------------- /.context/modules/analysis-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cam10001110101/mcp-server-outlook-email/HEAD/.context/modules/analysis-tools.md -------------------------------------------------------------------------------- /.context/modules/database-handlers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cam10001110101/mcp-server-outlook-email/HEAD/.context/modules/database-handlers.md -------------------------------------------------------------------------------- /.context/modules/email-processing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cam10001110101/mcp-server-outlook-email/HEAD/.context/modules/email-processing.md -------------------------------------------------------------------------------- /.context/modules/llms-full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cam10001110101/mcp-server-outlook-email/HEAD/.context/modules/llms-full.txt -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cam10001110101/mcp-server-outlook-email/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cam10001110101/mcp-server-outlook-email/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cam10001110101/mcp-server-outlook-email/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cam10001110101/mcp-server-outlook-email/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/EmailMetadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cam10001110101/mcp-server-outlook-email/HEAD/src/EmailMetadata.py -------------------------------------------------------------------------------- /src/MongoDBHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cam10001110101/mcp-server-outlook-email/HEAD/src/MongoDBHandler.py -------------------------------------------------------------------------------- /src/OutlookConnector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cam10001110101/mcp-server-outlook-email/HEAD/src/OutlookConnector.py -------------------------------------------------------------------------------- /src/SQLiteHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cam10001110101/mcp-server-outlook-email/HEAD/src/SQLiteHandler.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | # Make src directory a Python package 2 | -------------------------------------------------------------------------------- /src/debug_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cam10001110101/mcp-server-outlook-email/HEAD/src/debug_utils.py -------------------------------------------------------------------------------- /src/mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cam10001110101/mcp-server-outlook-email/HEAD/src/mcp_server.py -------------------------------------------------------------------------------- /src/tools/__init__.py: -------------------------------------------------------------------------------- 1 | # Make tools directory a Python package 2 | -------------------------------------------------------------------------------- /src/tools/embedding_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cam10001110101/mcp-server-outlook-email/HEAD/src/tools/embedding_processor.py --------------------------------------------------------------------------------