All checks were successful
Build and Push Monarch MCP Docker Image / build (push) Successful in 19s
Replaces the abandoned monarchmoney (hammem) with the actively maintained monarchmoneycommunity fork (bradleyseanf). This resolves the API domain migration issue where api.monarchmoney.com 301-redirects to api.monarch.com, causing Authorization header stripping and 401 errors. - Update dependency: monarchmoney>=0.1.15 -> monarchmoneycommunity>=1.3.2 - Update gql pin: >=3.4,<4.0 -> >=4.0,<5.0 (required by community fork) - Remove runtime BASE_URL patch (no longer needed, fork has correct URL)
36 lines
802 B
TOML
36 lines
802 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",
|
|
"monarchmoneycommunity>=1.3.2",
|
|
"gql>=4.0,<5.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"]
|