5 MCP tools for positioner control (status, move, home, stop, config) and 3 guided workflow prompts (home_positioner, configure_positioner, measure_pattern_grid). The measure_pattern_grid prompt orchestrates cross-server 3D pattern measurement with mcnanovna's VNA scan tools. httpx HTTP client communicates with ESP32 firmware over WiFi. Firmware and KiCad hardware schematics moved from mcnanovna.
25 lines
546 B
TOML
25 lines
546 B
TOML
[project]
|
|
name = "mcpositioner"
|
|
version = "2026.02.02"
|
|
description = "MCP server for ESP32 dual-axis antenna positioner control"
|
|
authors = [{name = "Ryan Malloy", email = "ryan@supported.systems"}]
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastmcp>=2.14.0",
|
|
"httpx>=0.28.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
mcpositioner = "mcpositioner.server:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/mcpositioner"]
|
|
|
|
[tool.ruff]
|
|
target-version = "py311"
|
|
line-length = 120
|