MCP Hub
Back to servers

Mintline MCP Server

Connects AI assistants to Mintline receipts and transactions via the Model Context Protocol. It enables users to search, filter, and manage financial records, including matching receipts with bank transactions through natural language.

glama
Updated
Feb 1, 2026

Mintline MCP Server

Connect AI assistants to your Mintline receipts and transactions via the Model Context Protocol.

Installation

npm install -g @mintline/mcp

Setup

1. Get your API key

Create an API key at mintline.ai/app/settings/api-keys

2. Configure Claude Desktop

Add to your ~/.claude/claude_desktop_config.json:

{
  "mcpServers": {
    "mintline": {
      "command": "mintline-mcp",
      "env": {
        "MINTLINE_API_KEY": "ml_live_your_api_key_here"
      }
    }
  }
}

3. Restart Claude Desktop

The Mintline tools will now be available.

Available Tools

ToolDescription
list_receiptsSearch and filter receipts by vendor, status
get_receiptGet receipt details with line items
list_transactionsSearch and filter bank transactions
get_transactionGet transaction details
list_statementsList uploaded bank statements
list_matchesView proposed receipt-transaction matches
confirm_matchConfirm a proposed match
reject_matchReject a proposed match

Example Prompts

  • "Show me my unmatched receipts"
  • "Find receipts from Amazon"
  • "What transactions need matching?"
  • "Confirm the top match"
  • "Show details for receipt rcpt_01abc123"

Environment Variables

VariableRequiredDescription
MINTLINE_API_KEYYesYour Mintline API key
MINTLINE_API_URLNoAPI URL (default: https://api.mintline.ai)

Development

git clone https://github.com/mintlineai/mintline-mcp.git
cd mintline-mcp
npm install

# Run locally
MINTLINE_API_KEY=ml_live_... node src/index.js

License

MIT

Reviews

No reviews yet

Sign in to write a review