[project] name = "reddit-rss-mcp" version = "1.1.4" description = "Read Reddit from local MCP-compatible clients, including Claude Code and Codex, with no API key, app registration or OAuth. A stdio MCP server over Reddit's public RSS feeds." readme = "README.md" license = "MIT" license-files = ["LICENSE"] requires-python = ">=3.10" authors = [{ name = "Jörgen Karlsson" }] keywords = ["mcp", "reddit", "rss", "claude", "codex", "model-context-protocol"] classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] dependencies = [ "mcp>=2.1,<3", "httpx>=0.27,<1", ] [project.urls] Homepage = "https://github.com/jorgen-k/reddit-mcp" Repository = "https://github.com/jorgen-k/reddit-mcp" Changelog = "https://github.com/jorgen-k/reddit-mcp/blob/main/CHANGELOG.md" [project.scripts] reddit-rss-mcp = "server:main" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] include = ["server.py"] [tool.hatch.build.targets.sdist] include = ["server.py", "README.md", "CHANGELOG.md", "LICENSE", "pyproject.toml"] [dependency-groups] dev = [ "pytest>=8", ] [tool.pytest.ini_options] pythonpath = ["."]