[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "osint-mcp"
version = "1.0.0"
description = "Unified OSINT MCP Server - Intelligence gathering for Claude"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Cyrenity", email = "info@cyrenitycyber.com" }
]
keywords = ["osint", "mcp", "intelligence", "reconnaissance", "security"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"fastmcp>=0.1.0",
"httpx>=0.27.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.3.0",
]
dashboard = [
"flask>=3.0.0",
]
[project.scripts]
osint-mcp = "osint_mcp.server:main"
[project.urls]
Homepage = "https://github.com/glitch-cc/osint-mcp"
Documentation = "https://github.com/glitch-cc/osint-mcp#readme"
Repository = "https://github.com/glitch-cc/osint-mcp"
[tool.hatch.build.targets.wheel]
packages = ["src/osint_mcp"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP"]
ignore = ["E501"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]