├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── LICENSE ├── README.md ├── pyproject.toml ├── scripts └── bump_version.py ├── src └── pubmedmcp │ ├── __init__.py │ └── __main__.py └── uv.lock /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grll/pubmedmcp/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grll/pubmedmcp/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grll/pubmedmcp/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grll/pubmedmcp/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grll/pubmedmcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grll/pubmedmcp/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grll/pubmedmcp/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/bump_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grll/pubmedmcp/HEAD/scripts/bump_version.py -------------------------------------------------------------------------------- /src/pubmedmcp/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1.4" 2 | -------------------------------------------------------------------------------- /src/pubmedmcp/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grll/pubmedmcp/HEAD/src/pubmedmcp/__main__.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grll/pubmedmcp/HEAD/uv.lock --------------------------------------------------------------------------------