23 lines
535 B
TOML
23 lines
535 B
TOML
[tool.poetry]
|
|
name = "selenium-mcp"
|
|
version = "0.1.0"
|
|
description = "MCP server for browser automation via Selenium WebDriver"
|
|
authors = []
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
packages = [{include = "selenium_mcp_server.py"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
mcp = ">=1.9.0"
|
|
selenium = ">=4.25.0"
|
|
pydantic = ">=2.0.0"
|
|
|
|
[tool.poetry.scripts]
|
|
selenium-mcp = "selenium_mcp_server:main"
|
|
selenium-mcp-stdio = "selenium_mcp_server:main_stdio"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|