Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
mcp-simple-arxiv
Claim
by
andybrandt
GitHub
Research & Data
Python
MIT License
34
Apple
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
mcp-simple-arxiv
mcp_simple_arxiv
mcp_simple_arxiv/arxiv_client.py
mcp_simple_arxiv/categories.py
mcp_simple_arxiv/__init__.py
mcp_simple_arxiv/__main__.py
mcp_simple_arxiv/server.py
mcp_simple_arxiv/taxonomy.json
mcp_simple_arxiv/update_taxonomy.py
""" MCP server providing access to arXiv papers through their API. """ import asyncio from .server import main as server_main __version__ = "0.1.0" def main(): """Main entry point for the package.""" asyncio.run(server_main())