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-arxiv'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"""
MCP server providing access to arXiv papers through their API.
"""
import asyncio
from .server import main as server_main
__version__ = "0.4.0"
def main():
"""Main entry point for the package."""
asyncio.run(server_main())