New mixins: - connectivity.py: adb_connect, adb_disconnect, adb_tcpip, adb_pair, device_properties (batch getprop) - settings.py: settings_get/put, wifi/bluetooth/airplane toggles, screen_brightness, screen_timeout, notification_list, clipboard_get, media_control Also fixes clipboard_set false-positive on devices where cmd clipboard returns exit 0 but has no implementation.
61 lines
1.5 KiB
TOML
61 lines
1.5 KiB
TOML
[project]
|
|
name = "mcadb"
|
|
version = "0.4.0"
|
|
description = "Android ADB MCP Server for device automation via Model Context Protocol"
|
|
authors = [
|
|
{name = "Ryan Malloy", email = "ryan@supported.systems"}
|
|
]
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
keywords = ["mcp", "android", "adb", "automation", "fastmcp"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Topic :: Software Development :: Testing",
|
|
"Topic :: System :: Hardware :: Hardware Drivers",
|
|
]
|
|
dependencies = [
|
|
"fastmcp>=2.14.0,<3.0.0",
|
|
"pydantic>=2.12.0",
|
|
]
|
|
requires-python = ">=3.11"
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.supported.systems/MCP/mcp-adb"
|
|
Documentation = "https://git.supported.systems/MCP/mcp-adb#readme"
|
|
Repository = "https://git.supported.systems/MCP/mcp-adb"
|
|
|
|
[project.scripts]
|
|
mcadb = "src.server:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=9.0.0",
|
|
"pytest-asyncio>=1.3.0",
|
|
"ruff>=0.15.0",
|
|
"mypy>=1.19.0",
|
|
]
|
|
|
|
[tool.ruff]
|
|
target-version = "py311"
|
|
line-length = 88
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "UP", "B", "SIM"]
|
|
|
|
[tool.mypy]
|
|
python_version = "3.11"
|
|
strict = true
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src"]
|