pyproject.toml•888 B
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "strands-agent-mcp"
version = "0.1.0"
description = "MCP for executing strands agents"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastmcp>=2.3.4",
"strands-agents>=0.1.1",
"strands-agents-builder>=0.1.0",
"strands-agents-tools>=0.1.0",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules"
]
license-files = ["LICEN[CS]E*"]
[project.scripts]
strands-agent-mcp = "strands_agent_mcp.server:mcp.run"