[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "atlas-browser-mcp"
version = "0.1.0"
description = "Visual browser MCP server with Set-of-Mark labeling and humanized interactions"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "NotLing" }
]
keywords = [
"mcp",
"browser",
"automation",
"ai",
"visual",
"playwright",
"claude",
"anthropic",
"web-scraping",
"set-of-mark"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"mcp>=1.0.0",
"playwright>=1.40.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
[project.urls]
Homepage = "https://github.com/NotLing/atlas-browser-mcp"
Repository = "https://github.com/NotLing/atlas-browser-mcp"
Issues = "https://github.com/NotLing/atlas-browser-mcp/issues"
[project.scripts]
atlas-browser-mcp = "atlas_browser_mcp.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/atlas_browser_mcp"]