Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Read-only MCP server for accessing personal finance data from Ogarni.AI, including receipts, categories, summaries, notifications, and more.

README.md

Ogarni.AI MCP Server

MCP server for read-only access to Ogarni.AI personal finance data.

Setup

1. Get an API Token

  1. Download the Ogarni.AI mobile app:
  1. Open the app and go to Settings → API Tokens
  2. Create a new token with read scope
  3. Copy the token (starts with oai_)

2. Install

Claude Code

claude mcp add ogarniai-mcp-server -e OGARNIAI_API_TOKEN=oai_your_token -- npx -y github:IsidoreSoftware/ogarniai-mcp-server

Claude Desktop / Cursor / Windsurf

Add to your MCP config file:

macOS/Linux: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "ogarniai": {
      "command": "npx",
      "args": ["-y", "github:IsidoreSoftware/ogarniai-mcp-server"],
      "env": {
        "OGARNIAI_API_TOKEN": "oai_your_token_here"
      }
    }
  }
}

Important: After adding the config, restart Claude Desktop completely for changes to take effect.

Cursor

Add to .cursorrules or MCP settings:

{
  "mcpServers": {
    "ogarniai": {
      "command": "npx",
      "args": ["-y", "github:IsidoreSoftware/ogarniai-mcp-server"],
      "env": {
        "OGARNIAI_API_TOKEN": "oai_your_token_here"
      }
    }
  }
}

Windsurf

Add to Windsurf MCP config (Settings → MCP):

{
  "mcpServers": {
    "ogarniai": {
      "command": "npx",
      "args": ["-y", "github:IsidoreSoftware/ogarniai-mcp-server"],
      "env": {
        "OGARNIAI_API_TOKEN": "oai_your_token_here"
      }
    }
  }
}

Local Development

git clone https://github.com/IsidoreSoftware/ogarniai-mcp-server.git
cd ogarniai-mcp-server
npm install
npm run build
OGARNIAI_API_TOKEN=oai_your_token node dist/index.js

Available Tools

| Tool | Description | |------|-------------| | ogarniai_list_documents | List receipts with date filters and sorting | | ogarniai_get_document | Get single receipt details | | ogarniai_get_document_image | Get receipt image | | ogarniai_get_document_duplicates | Get duplicate suggestions for a document | | ogarniai_list_categories | List expense/income categories | | ogarniai_list_tags | List user tags | | ogarniai_get_weekly_summary | Get latest weekly summary | | ogarniai_get_weekly_summary_periods | List available summary periods | | ogarniai_get_summary_by_period | Get summary for a custom date range | | ogarniai_get_current_period | Get summary for a preset period | | ogarniai_list_notifications | List notifications with filters | | ogarniai_get_notification | Get notification details | | ogarniai_get_unread_count | Get unread notification count | | ogarniai_list_groups | List finance groups | | ogarniai_get_group | Get group details | | ogarniai_list_mailboxes | List inbound email addresses | | ogarniai_list_dedup_suggestions | List duplicate suggestions | | ogarniai_list_loyalty_accounts | List loyalty program accounts | | ogarniai_list_supported_banks | List supported banks | | ogarniai_get_recurring_expenses | List recurring expenses |

Configuration

| Environment Variable | Required | Default | Description | |---------------------|----------|---------|-------------| | OGARNIAI_API_TOKEN | Yes | - | API token (starts with oai_) | | OGARNIAI_API_URL | No | https://api.ogarni.ai | API base URL |

Security

  • All tools are read-only
  • Token is passed via environment variable, never hardcoded
  • Input validated with Zod schemas
  • Error messages never expose token values

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Finance & Payments servers.