[project]
name = "mcp-reddit"
version = "0.2.1"
description = "MCP server for scraping Reddit - no API keys required"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Naman" }
]
keywords = ["mcp", "reddit", "scraper", "claude", "anthropic"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mcp>=1.0.0",
"pandas>=2.0.0",
"aiohttp>=3.9.0",
"aiofiles>=23.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
[project.scripts]
mcp-reddit = "mcp_reddit.server:main"
[project.urls]
Homepage = "https://github.com/namanxajmera/mcp-reddit"
Repository = "https://github.com/namanxajmera/mcp-reddit"
Issues = "https://github.com/namanxajmera/mcp-reddit/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_reddit"]