- Implemented server and client script management tools in `frappe_mcp/tools/scripts.py` - Added translation and user permission management tools in `frappe_mcp/tools/translations.py` - Created user and role management tools in `frappe_mcp/tools/users.py` - Developed webhook and API key management tools in `frappe_mcp/tools/webhooks.py` - Introduced workflow management tools in `frappe_mcp/tools/workflow_tools.py` - Added `pyproject.toml` for project metadata and dependencies
30 lines
638 B
TOML
30 lines
638 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "frappe-mcp"
|
|
version = "0.1.0"
|
|
description = "MCP Server for Frappe Framework — remote Docker deployment"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"mcp>=1.0.0",
|
|
"httpx>=0.27.0",
|
|
"python-dotenv>=1.0.0",
|
|
"pydantic>=2.0.0",
|
|
"pydantic-settings>=2.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
sse = [
|
|
"starlette>=0.40.0",
|
|
"uvicorn>=0.30.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
frappe-mcp = "frappe_mcp.server:main"
|
|
frappe-mcp-check = "frappe_mcp.healthcheck:main_health_check"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["frappe_mcp"]
|