Files
monarch-mcp-custom/pyproject.toml
b3nw 7a7140c76c
All checks were successful
Build and Push Monarch MCP Docker Image / build (push) Successful in 46s
feat: add api_call pass-through tool and API reference resource
- Add single pass-through tool following blueprint 'escape hatch' pattern
- Add monarch://api-reference resource with available methods documentation
- Fix dependency: use monarchmoney>=0.1.15 instead of monarchmoneycommunity
- Add JSON error handling for malformed params
2026-05-05 02:32:32 +00:00

36 lines
789 B
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "monarch-mcp-custom"
version = "0.1.0"
description = "Custom Monarch Money MCP Server with SSE support"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "opencode" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.12"
dependencies = [
"mcp[cli]>=1.0.0",
"fastmcp>=0.4.1",
"monarchmoney>=0.1.15",
"gql>=4.0",
"python-dotenv>=1.0.0",
"pydantic>=2.0.0",
"starlette>=0.35.0",
"uvicorn>=0.27.0",
"pyotp>=2.9.0",
]
[project.scripts]
monarch-mcp-custom = "monarch_mcp_custom.server:main"
[tool.setuptools.packages.find]
where = ["src"]