2969dfc950
- intel_strategic_posture: composite risk from 9 weighted domains (military, political, conflict, infrastructure, economic, cyber, health, climate, space) with per-domain scoring and top threats - intel_world_brief: structured daily intelligence summary aggregating posture, focal points, news clusters, anomalies, trending threats - intel_fleet_report: naval fleet activity combining theater posture, waterway status, military surge, and readiness scoring - intel_population_exposure: population at risk near active events (earthquakes, wildfires, conflict) using 105-city dataset (1B pop) New files: analysis/posture.py, analysis/world_brief.py, analysis/exposure.py, sources/fleet.py, config/population.py Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
49 lines
1.2 KiB
TOML
49 lines
1.2 KiB
TOML
[project]
|
|
name = "world-intel-mcp"
|
|
version = "0.1.0"
|
|
description = "World Intelligence MCP Server - real-time global intelligence across 27 domains with 68 MCP tools"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = {text = "MIT"}
|
|
authors = [
|
|
{name = "Phoenix AGI", email = "phoenix@2acrestudios.com"}
|
|
]
|
|
keywords = ["mcp", "intelligence", "osint", "markets", "geopolitical", "phoenix"]
|
|
|
|
dependencies = [
|
|
"mcp>=1.0.0",
|
|
"httpx>=0.27.0",
|
|
"pydantic>=2.0.0",
|
|
"feedparser>=6.0.0",
|
|
"click>=8.1.0",
|
|
"jinja2>=3.1.0",
|
|
"rich>=13.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dashboard = ["starlette>=0.37.0", "uvicorn>=0.29.0"]
|
|
pdf = ["weasyprint>=62.0"]
|
|
dev = [
|
|
"pytest>=8.0.0",
|
|
"pytest-asyncio>=0.23.0",
|
|
"pytest-cov>=4.0.0",
|
|
"respx>=0.21.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
world-intel-mcp = "world_intel_mcp.server:run"
|
|
intel = "world_intel_mcp.cli:main"
|
|
intel-dashboard = "world_intel_mcp.dashboard.app:run"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/world_intel_mcp"]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["src/world_intel_mcp/tests"]
|
|
addopts = "-v --tb=short"
|