Five new prompts guide LLMs through multi-tool workflows: satellite_snapshot, climate_monitor, layer_deep_dive, multi_layer_story, polar_watch. README documents all 11 tools, 5 resources, and 7 prompts with example conversations. MIT license, project URLs, and updated classifiers for PyPI.
59 lines
1.5 KiB
TOML
59 lines
1.5 KiB
TOML
[project]
|
|
name = "mcgibs"
|
|
version = "2026.02.18.3"
|
|
description = "FastMCP server for NASA Global Imagery Browse Services (GIBS)"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
license = {text = "MIT"}
|
|
authors = [{name = "Ryan Malloy", email = "ryan@supported.systems"}]
|
|
keywords = ["nasa", "gibs", "mcp", "satellite", "imagery", "earth-science"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: Science/Research",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Programming Language :: Python :: 3.14",
|
|
"Topic :: Scientific/Engineering :: GIS",
|
|
]
|
|
dependencies = [
|
|
"fastmcp>=3.0.0",
|
|
"pillow>=12.0.0",
|
|
"defusedxml>=0.7.1",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.supported.systems/mcp/mcgibs"
|
|
Documentation = "https://nasa-gibs.github.io/gibs-api-docs/"
|
|
"Bug Tracker" = "https://git.supported.systems/mcp/mcgibs/issues"
|
|
|
|
[project.scripts]
|
|
mcgibs = "mcgibs.server:main"
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"ruff>=0.9.0",
|
|
"pytest>=8.0.0",
|
|
"pytest-asyncio>=1.0.0",
|
|
"respx>=0.22.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/mcgibs"]
|
|
|
|
[tool.ruff]
|
|
target-version = "py312"
|
|
line-length = 99
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "W", "I", "UP", "B", "SIM", "RUF"]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|