baba564b84
Add 12 new tools across 6 domains: - Forex: intel_forex_rates, intel_forex_timeseries, intel_major_crosses (ECB/Frankfurter) - Bonds: intel_yield_curve, intel_bond_indices (FRED + Yahoo Finance fallback) - Earnings: intel_earnings_calendar, intel_earnings_surprise (Yahoo Finance) - SEC: intel_sec_filings, intel_company_filings, intel_recent_8k (SEC EDGAR) - Company: intel_company_profile (composite: Yahoo + GDELT + SEC + GitHub) - Macro: intel_macro_composite (weighted score from 6 signals) New source modules: forex.py, bonds.py, earnings.py, sec_edgar.py New analysis modules: company.py, macro_composite.py 66 new tests (186 total, all passing) All free public APIs, no API keys required.
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 30+ domains with 100+ 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"
|