← journalize.dev

INDIVIDUAL MCP TOOL

list_accounts

List all opened accounts with their currency constraints and booking method.

journalize.devnone authenticationAvailability not checked

Input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent endpoint

journalize.dev

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.agent-native-ledger]
url = "https://journalize.dev/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "agent-native-ledger": {
      "type": "http",
      "url": "https://journalize.dev/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: agent-native-ledger
Remote MCP URL: https://journalize.dev/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "agent-native-ledger": {
      "url": "https://journalize.dev/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "agent-native-ledger": {
      "type": "http",
      "url": "https://journalize.dev/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "agent-native-ledger",
  "transport": "streamable-http",
  "url": "https://journalize.dev/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • submit_directive — Submit one Beancount directive (open, transaction, close, balance, price, note, document — any type).
  • validate_directive — Free dry-run: parse+book text against your full history without persisting or charging anything.
  • submit_batch — Submit up to 1000 directives atomically — all persist together or none do.
  • list_directives — List raw directives (optionally filtered by account/date range).
  • get_account_balance — Balance of a single account.
  • export_ledger — Export the full ledger as literal Beancount text — a portable snapshot for fava/bean-report/etc.
  • get_balance_sheet — Full realize() balance sheet — often served from cache.
  • get_income_statement — Income statement, period-scoped by since/until (ISO date strings, both optional — omitted means whole history).