2026-02-23 10:33:57 -05:00
|
|
|
[project]
|
|
|
|
|
name = "world-intel-mcp"
|
|
|
|
|
version = "0.1.0"
|
2026-03-08 08:22:41 -04:00
|
|
|
description = "World Intelligence MCP Server — real-time global intelligence across 30+ domains with 100+ MCP tools"
|
2026-02-23 10:33:57 -05:00
|
|
|
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 = [
|
2026-04-06 14:39:38 -04:00
|
|
|
"mcp>=1.8.0,<2.0.0",
|
|
|
|
|
"httpx[socks]>=0.27.0",
|
|
|
|
|
"pydantic>=2.10.0,<3.0.0",
|
2026-02-23 10:33:57 -05:00
|
|
|
"feedparser>=6.0.0",
|
|
|
|
|
"click>=8.1.0",
|
|
|
|
|
"jinja2>=3.1.0",
|
|
|
|
|
"rich>=13.0.0",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
2026-02-24 07:05:58 -05:00
|
|
|
dashboard = ["starlette>=0.37.0", "uvicorn>=0.29.0"]
|
2026-03-08 09:29:43 -04:00
|
|
|
vector = ["qdrant-client>=1.7.0", "fastembed>=0.7.0"]
|
2026-02-23 10:33:57 -05:00
|
|
|
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"
|
2026-02-24 07:05:58 -05:00
|
|
|
intel-dashboard = "world_intel_mcp.dashboard.app:run"
|
2026-03-08 10:05:06 -04:00
|
|
|
intel-collector = "world_intel_mcp.collector:main"
|
2026-02-23 10:33:57 -05:00
|
|
|
|
|
|
|
|
[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"]
|
2026-04-06 18:53:03 -04:00
|
|
|
addopts = "-v --tb=short -m 'not smoke'"
|
|
|
|
|
markers = [
|
|
|
|
|
"smoke: live API tests (deselected by default, run with: pytest -m smoke)",
|
|
|
|
|
]
|