We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/isomoes/all-in-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•400 B
"""
APaper - Academic Paper Research Module
A specialized module for academic paper search and PDF processing utilities.
Provides tools for searching papers from multiple academic platforms (IACR,
CryptoBib, Crossref, Google Scholar) and processing PDF documents.
"""
from .models.paper import Paper, read_pdf
from .server import main
__version__ = "0.1.0"
__all__ = ["Paper", "read_pdf", "main"]