[project]
name = "ayga-mcp-client"
version = "1.0.0"
description = "MCP server for Redis API with 21+ AI parsers (Perplexity, ChatGPT, Claude, etc.)"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
authors = [{name = "Ozan D", email = "support@ayga.tech"}]
keywords = ["mcp", "redis", "ai", "parsers", "claude", "copilot", "perplexity", "chatgpt"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"mcp>=1.0.0",
"httpx>=0.27.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"ruff>=0.6.0",
"mypy>=1.11.0",
]
[project.scripts]
ayga-mcp-client = "ayga_mcp_client.__main__:main"
[project.urls]
Homepage = "https://github.com/ozand/ayga-mcp-client"
Documentation = "https://redis.ayga.tech/docs"
Repository = "https://github.com/ozand/ayga-mcp-client"
Issues = "https://github.com/ozand/ayga-mcp-client/issues"
[build-system]
requires = ["setuptools>=61.0,<75.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["ayga_mcp_client*"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.mypy]
python_version = "3.11"
warn_return_any = true