├── .github └── funding.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── MacOs_certificates_solution.jpg ├── README.md ├── TODO.md ├── mcp_simple_pubmed ├── __init__.py ├── __main__.py ├── fulltext_client.py ├── pubmed_client.py ├── pubmed_fetch.py ├── pubmed_search.py └── server.py ├── pyproject.toml ├── smithery.yaml └── test_client.py /.github/funding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybrandt/mcp-simple-pubmed/HEAD/.github/funding.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybrandt/mcp-simple-pubmed/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybrandt/mcp-simple-pubmed/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybrandt/mcp-simple-pubmed/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybrandt/mcp-simple-pubmed/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /MacOs_certificates_solution.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybrandt/mcp-simple-pubmed/HEAD/MacOs_certificates_solution.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybrandt/mcp-simple-pubmed/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybrandt/mcp-simple-pubmed/HEAD/TODO.md -------------------------------------------------------------------------------- /mcp_simple_pubmed/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybrandt/mcp-simple-pubmed/HEAD/mcp_simple_pubmed/__init__.py -------------------------------------------------------------------------------- /mcp_simple_pubmed/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybrandt/mcp-simple-pubmed/HEAD/mcp_simple_pubmed/__main__.py -------------------------------------------------------------------------------- /mcp_simple_pubmed/fulltext_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybrandt/mcp-simple-pubmed/HEAD/mcp_simple_pubmed/fulltext_client.py -------------------------------------------------------------------------------- /mcp_simple_pubmed/pubmed_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybrandt/mcp-simple-pubmed/HEAD/mcp_simple_pubmed/pubmed_client.py -------------------------------------------------------------------------------- /mcp_simple_pubmed/pubmed_fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybrandt/mcp-simple-pubmed/HEAD/mcp_simple_pubmed/pubmed_fetch.py -------------------------------------------------------------------------------- /mcp_simple_pubmed/pubmed_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybrandt/mcp-simple-pubmed/HEAD/mcp_simple_pubmed/pubmed_search.py -------------------------------------------------------------------------------- /mcp_simple_pubmed/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybrandt/mcp-simple-pubmed/HEAD/mcp_simple_pubmed/server.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybrandt/mcp-simple-pubmed/HEAD/pyproject.toml -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybrandt/mcp-simple-pubmed/HEAD/smithery.yaml -------------------------------------------------------------------------------- /test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andybrandt/mcp-simple-pubmed/HEAD/test_client.py --------------------------------------------------------------------------------