- Grazing: allotment names, acreage, admin units - Wild Horses: HMA populations, AML targets, inventory dates - Recreation: campgrounds, trailheads, facilities from RIDB - Wilderness: designated areas and WSAs with designation dates - Wild Rivers: Wild & Scenic River segments with classification - ACECs: Areas of Critical Environmental Concern with protected values Total: 18 tools across 9 BLM data domains
65 lines
1.5 KiB
TOML
65 lines
1.5 KiB
TOML
[project]
|
|
name = "mcblmplss"
|
|
version = "2025.01.25"
|
|
description = "MCP server for querying BLM land data: PLSS, land manager, mining claims, grazing, wild horses, recreation, wilderness, rivers, and ACECs"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
requires-python = ">=3.11"
|
|
authors = [
|
|
{name = "Ryan Malloy", email = "ryan@supported.systems"}
|
|
]
|
|
keywords = [
|
|
"mcp",
|
|
"fastmcp",
|
|
"blm",
|
|
"plss",
|
|
"cadastral",
|
|
"land-survey",
|
|
"gis",
|
|
"mining-claims",
|
|
"surface-management",
|
|
"land-ownership",
|
|
"public-lands",
|
|
"grazing",
|
|
"wild-horses",
|
|
"recreation",
|
|
"wilderness",
|
|
"wild-rivers",
|
|
"acec",
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Topic :: Scientific/Engineering :: GIS",
|
|
]
|
|
dependencies = [
|
|
"fastmcp>=2.13.2",
|
|
"httpx>=0.28.1",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.supported.systems/MCP/mcblmplss"
|
|
Repository = "https://git.supported.systems/MCP/mcblmplss"
|
|
Issues = "https://git.supported.systems/MCP/mcblmplss/issues"
|
|
|
|
[project.scripts]
|
|
mcblmplss = "mcblmplss:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/mcblmplss"]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py311"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "UP"]
|