AgentHubAgentHub

monarch-money

MCP ServerMCP Registry官方收录

com.pulsemcp/monarch-money · v0.0.7

MCP server for Monarch Money — account, transaction, and budget management.

概览

monarch-money 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "monarch-money": {
      "command": "npx",
      "args": [
        "-y",
        "monarch-money-mcp-server"
      ]
    }
  }
}

环境变量

MONARCH_SESSION_TOKEN可选secret

Pre-obtained session token for authentication (recommended over email/password).

MONARCH_EMAIL可选

Email address for email/password authentication.

MONARCH_PASSWORD可选secret

Password for email/password authentication.

MONARCH_TOTP可选secret

TOTP code if 2FA is enabled on the account.

MONARCH_EMAIL_OTP可选secret

Email OTP code required only on first login from a new install.

MONARCH_SESSION_PASSPHRASE可选secret

Override passphrase for encrypting the on-disk session file.

MONARCH_STATE_DIR可选

Directory where session.enc file is stored.

MONARCH_ENABLED_TOOL_GROUPS可选

Comma-separated list of tool groups to enable (readonly, manage).

MONARCH_ENABLED_TOOLS可选

Comma-separated whitelist of specific tool names to enable.

MONARCH_DISABLED_TOOLS可选

Comma-separated blacklist of specific tool names to disable.

相关资源

统一 Manifest

{
  "id": "com.pulsemcp/monarch-money",
  "type": "mcp-server",
  "version": "0.0.7",
  "displayName": "monarch-money",
  "description": "MCP server for Monarch Money — account, transaction, and budget management.",
  "repository": {
    "url": "https://github.com/pulsemcp/mcp-servers",
    "source": "github",
    "subfolder": "experimental/monarch-money"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "monarch-money-mcp-server",
        "version": "0.0.7",
        "runtimeHint": "npx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "MONARCH_SESSION_TOKEN",
            "description": "Pre-obtained session token for authentication (recommended over email/password).",
            "isSecret": true
          },
          {
            "name": "MONARCH_EMAIL",
            "description": "Email address for email/password authentication."
          },
          {
            "name": "MONARCH_PASSWORD",
            "description": "Password for email/password authentication.",
            "isSecret": true
          },
          {
            "name": "MONARCH_TOTP",
            "description": "TOTP code if 2FA is enabled on the account.",
            "isSecret": true
          },
          {
            "name": "MONARCH_EMAIL_OTP",
            "description": "Email OTP code required only on first login from a new install.",
            "isSecret": true
          },
          {
            "name": "MONARCH_SESSION_PASSPHRASE",
            "description": "Override passphrase for encrypting the on-disk session file.",
            "isSecret": true
          },
          {
            "name": "MONARCH_STATE_DIR",
            "description": "Directory where session.enc file is stored."
          },
          {
            "name": "MONARCH_ENABLED_TOOL_GROUPS",
            "description": "Comma-separated list of tool groups to enable (readonly, manage)."
          },
          {
            "name": "MONARCH_ENABLED_TOOLS",
            "description": "Comma-separated whitelist of specific tool names to enable."
          },
          {
            "name": "MONARCH_DISABLED_TOOLS",
            "description": "Comma-separated blacklist of specific tool names to disable."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "com.pulsemcp/monarch-money",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/com.pulsemcp%2Fmonarch-money/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
monarch-money — MCP Server 安装与配置 · AgentHub