├── .github └── workflows │ └── claude.yml ├── .gitignore ├── LICENSE ├── README.md ├── pyproject.toml ├── screenshot.png ├── scripts ├── modal_pdf_converter.py ├── modal_server.py ├── pdf_convert.py └── zotero_query.py └── zotero_mcp ├── __init__.py ├── db_server.py ├── server.py └── tests ├── __init__.py ├── conftest.py ├── test_integration_server.py └── test_server.py /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swairshah/zotero-mcp-server/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swairshah/zotero-mcp-server/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swairshah/zotero-mcp-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swairshah/zotero-mcp-server/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swairshah/zotero-mcp-server/HEAD/pyproject.toml -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swairshah/zotero-mcp-server/HEAD/screenshot.png -------------------------------------------------------------------------------- /scripts/modal_pdf_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swairshah/zotero-mcp-server/HEAD/scripts/modal_pdf_converter.py -------------------------------------------------------------------------------- /scripts/modal_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swairshah/zotero-mcp-server/HEAD/scripts/modal_server.py -------------------------------------------------------------------------------- /scripts/pdf_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swairshah/zotero-mcp-server/HEAD/scripts/pdf_convert.py -------------------------------------------------------------------------------- /scripts/zotero_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swairshah/zotero-mcp-server/HEAD/scripts/zotero_query.py -------------------------------------------------------------------------------- /zotero_mcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zotero_mcp/db_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swairshah/zotero-mcp-server/HEAD/zotero_mcp/db_server.py -------------------------------------------------------------------------------- /zotero_mcp/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swairshah/zotero-mcp-server/HEAD/zotero_mcp/server.py -------------------------------------------------------------------------------- /zotero_mcp/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zotero_mcp/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swairshah/zotero-mcp-server/HEAD/zotero_mcp/tests/conftest.py -------------------------------------------------------------------------------- /zotero_mcp/tests/test_integration_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swairshah/zotero-mcp-server/HEAD/zotero_mcp/tests/test_integration_server.py -------------------------------------------------------------------------------- /zotero_mcp/tests/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swairshah/zotero-mcp-server/HEAD/zotero_mcp/tests/test_server.py --------------------------------------------------------------------------------