MCP server for Splitwise integration with AI-powered voice expense logging
Project description
Splitwise MCP Server
A Model Context Protocol (MCP) server that integrates with Splitwise. Connect your AI assistant (Claude, Cursor, etc.) to manage Splitwise expenses using natural language — with voice support!
How It Works
flowchart LR
Client[Claude / Cursor] -->|MCP| Server[splitwise-mcp]
Server -->|audio| Deepgram[Deepgram STT]
Deepgram -->|text| Gemini[Gemini 3 Flash]
Gemini -->|action| Splitwise[Splitwise API]
Features
| Tool | Description |
|---|---|
voice_command |
Send audio → Deepgram transcribes → Gemini processes → Splitwise executes |
text_command |
Send text → Gemini processes → Splitwise executes |
add_expense |
Add expenses with support for groups, percentages, exclusions, and specific payers |
delete_expense |
Delete an expense by ID |
list_friends |
List your Splitwise friends |
configure_splitwise |
Configure API credentials |
login_with_token |
Login with OAuth2 token |
Smart Name Matching: If Deepgram transcribes "Humeet" but your friend is "Sumeet", Gemini will ask for clarification instead of guessing.
Advanced Splits
- Percentages: "Split 40% for me and 60% for Alice"
- Groups: "Add to Apartment group" (Auto-fetches members)
- Exclusions: "Add to Apartment but exclude Bob"
- Payer: "Alice paid $50"
- Deletion: "Delete expense 12345"
Installation
Option 1: Install from PyPI (Recommended)
pip install splitwise-mcp
Option 2: Install from Source
-
Clone the repository:
git clone https://github.com/hubshashwat/the-splitwise-mcp.git cd the-splitwise-mcp
-
Create and activate a virtual environment:
python3 -m venv .venv source .venv/bin/activate
-
Install the package:
pip install -e .
Configuration
You'll need API keys from three services:
-
Splitwise API Keys (https://secure.splitwise.com/apps/new)
- Register a new application
- Get: Consumer Key, Consumer Secret, and API Key
-
Gemini API Key (https://aistudio.google.com/)
- Create API key (free tier available)
-
Deepgram API Key (https://console.deepgram.com/)
- Sign up and get API key (free tier available)
Set environment variables in your shell or add to your Claude Desktop config (see below).
Usage
With Claude Desktop
Add to your Claude Desktop config:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"splitwise": {
"command": "splitwise-mcp",
"env": {
"SPLITWISE_CONSUMER_KEY": "your_consumer_key",
"SPLITWISE_CONSUMER_SECRET": "your_consumer_secret",
"SPLITWISE_API_KEY": "your_api_key",
"GEMINI_API_KEY": "your_gemini_key",
"DEEPGRAM_API_KEY": "your_deepgram_key"
}
}
}
}
Note: If you installed from source, use the full path instead:
- macOS/Linux:
"/path/to/the-splitwise-mcp/.venv/bin/splitwise-mcp" - Windows:
"C:\\path\\to\\the-splitwise-mcp\\.venv\\Scripts\\splitwise-mcp.exe"
Then in Claude: "Add an expense of 50 with Sumeet for dinner"
With Cursor
Add to Cursor's MCP settings with the same command path.
Terminal Agent (Optional)
For direct voice testing without an MCP client:
.venv/bin/python run_agent.py
Commands: v (voice), t (text), q (quit)
Remote Access (SSE)
To run the MCP server over HTTP for remote clients:
.venv/bin/uvicorn splitwise_mcp.sse:app --host 0.0.0.0 --port 8000
Connect via: http://YOUR_IP:8000/sse
Development
Run tests:
.venv/bin/python tests/test_logic.py
Troubleshooting
Microphone Issues (macOS)
If the agent says "Recording finished" immediately but captures no audio (Volume: 0.0), your terminal likely lacks microphone permission.
- Go to System Settings > Privacy & Security > Microphone.
- Enable access for your terminal app (Terminal, iTerm, VS Code, etc.).
- Restart your terminal for changes to take effect.
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file splitwise_mcp-0.1.1.tar.gz.
File metadata
- Download URL: splitwise_mcp-0.1.1.tar.gz
- Upload date:
- Size: 17.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc5833775247709786448dd1d3ce640eb06cef9d56cdf4c6e2c0b68ffd7ed0f0
|
|
| MD5 |
b6e48333df38e1cfa44fbc86b038ce0a
|
|
| BLAKE2b-256 |
c52302988fd8aa155cb97b41375f25044d11a68f0dcefb620451862ab8acb146
|
File details
Details for the file splitwise_mcp-0.1.1-py3-none-any.whl.
File metadata
- Download URL: splitwise_mcp-0.1.1-py3-none-any.whl
- Upload date:
- Size: 16.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1664399188705ff2b77d1ff7b0192248ab381fd426ff3b16003345d3d9c41b0
|
|
| MD5 |
015ac5943ac925ddfac8ce3d523360d2
|
|
| BLAKE2b-256 |
1732d0b12ae40d19b323cd1d9ac80b8083fd8b71d0ee4bcefa32b3e86b2741a1
|