[project]
name = "outscraper-mcp-server"
version = "0.1.2"
description = "MCP server exposing Outscraper tools"
authors = [
{name = "Outscraper", email = "developers@outscraper.com"}
]
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
keywords = ["mcp", "outscraper", "google-maps", "reviews", "search", "data-extraction", "business-intelligence", "api", "google"]
dependencies = [
"outscraper>=5.9.1",
"fastmcp>=2.8.0",
"python-dotenv>=1.1.0"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=22.0.0",
"flake8>=4.0.0",
"mypy>=1.0.0",
"twine>=4.0.0",
"build>=0.10.0",
]
[project.urls]
Homepage = "https://github.com/outscraper/outscraper-mcp"
Repository = "https://github.com/outscraper/outscraper-mcp.git"
Issues = "https://github.com/outscraper/outscraper-mcp/issues"
Documentation = "https://github.com/outscraper/outscraper-mcp#readme"
"Bug Reports" = "https://github.com/outscraper/outscraper-mcp/issues"
"Source Code" = "https://github.com/outscraper/outscraper-mcp"
[project.scripts]
outscraper-mcp-server = "outscraper_mcp_server.__init__:main"
[tool.hatch.build.targets.wheel]
packages = ["outscraper_mcp_server"]
[tool.hatch.build.targets.sdist]
include = [
"/outscraper_mcp_server",
"/README.md",
"/LICENSE",
"/pyproject.toml",
]
[tool.black]
line-length = 88
target-version = ['py310']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203", "W503"]
[dependency-groups]
dev = [
"pytest>=8.3.5",
"pytest-asyncio>=1.0.0",
"twine>=6.1.0",
]