[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mcp-simple-arxiv"
version = "0.2.2"
description = "An MCP server that provides access to arXiv papers through their API."
readme = "README.md"
authors = [
{name = "Andy Brandt", email = "andy@codesprinters.com"},
{name = "Claude", email = "claude@anthropic.com"}
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"mcp",
"feedparser", # for parsing arXiv API responses
"httpx", # for making HTTP requests with async support
"beautifulsoup4", # for parsing arXiv taxonomy page
]
[project.urls]
Homepage = "https://github.com/andybrandt/mcp-simple-arxiv"
[project.scripts]
mcp-simple-arxiv = "mcp_simple_arxiv:main"