- Home
- MCP servers
- Mintline
Mintline
- javascript
0
GitHub Stars
javascript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"mintlineai-mintline-mcp": {
"command": "mintline-mcp",
"args": [],
"env": {
"MINTLINE_API_KEY": "YOUR_API_KEY",
"MINTLINE_API_URL": "https://api.mintline.ai"
}
}
}
}You can connect Claude and other AI assistants to your Mintline receipts and bank transactions using the Mintline MCP Server. This server enables you to search, view, and match receipts with transactions through a simple local command, making it easy to automate financial workflows and improve data accuracy.
How to use
You interact with the Mintline MCP server from your MCP client by invoking the available tools to search, inspect, and pair receipts with transactions. Use these common patterns to get work done efficiently:
How to install
npm install -g @mintline/mcp
Next, obtain your API key from Mintline and prepare your client configuration. The following steps show how to integrate with Claude Desktop as an example.
Configure your MCP client and start using Mintline tools
{
"mcpServers": {
"mintline": {
"command": "mintline-mcp",
"env": {
"MINTLINE_API_KEY": "ml_live_your_api_key_here"
}
}
}
}
Usage notes
- Ensure you have the API key available and set in the environment for the MCP client to authenticate requests.
Environment and security considerations
- The server requires your Mintline API key. Treat this key as a sensitive credential and do not expose it in shared configurations.
Available tools
list_receipts
Search and filter receipts by vendor, status to quickly locate relevant receipts.
get_receipt
Retrieve detailed information for a specific receipt, including line items.
list_transactions
Search and filter bank transactions to find matches or track activity.
get_transaction
Get detailed information for a specific bank transaction.
list_statements
List uploaded bank statements available for review.
list_matches
View proposed matches between receipts and transactions to assess potential pairings.
confirm_match
Confirm a proposed receipt-transaction match, finalizing the pairing.
reject_match
Reject a proposed receipt-transaction match to discard an incorrect pairing.