We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/andybrandt/mcp-simple-pubmed'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•231 B
"""
MCP server providing access to PubMed articles through Entrez API.
"""
import asyncio
import os
from . import server
def main():
"""Main entry point for the package."""
asyncio.run(server.main())
__version__ = "0.1.0"