[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agenthotspot-mcp"
version = "1.0.0"
description = "MCP server to search and discover connectors from AgentHotspot.com marketplace"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "AgentHotspot", email = "support@agenthotspot.com" }
]
keywords = [
"mcp",
"model-context-protocol",
"agenthotspot",
"ai-agents",
"connectors",
"marketplace",
"llm",
"claude",
"openai"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"fastmcp>=0.1.0",
"httpx>=0.24.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
]
langchain = [
"langchain-mcp-adapters>=0.1.0",
]
[project.urls]
Homepage = "https://agenthotspot.com"
Documentation = "https://github.com/AgentHotspot/agenthotspot-mcp#readme"
Repository = "https://github.com/AgentHotspot/agenthotspot-mcp"
Issues = "https://github.com/AgentHotspot/agenthotspot-mcp/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/agenthotspot_mcp"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
"/LICENSE",
]
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # Pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = [
"E501", # line too long (handled by formatter)
]
[tool.ruff.lint.isort]
known-first-party = ["agenthotspot_mcp"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]