SplitwiseMCP
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@SplitwiseMCPshow my recent expenses with friends"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
SplitwiseMCP
Installation guide for the Splitwise MCP server. The MCP server implementation and app-specific documentation live in MCP_files/.
What This Installs
This repo provides a local Model Context Protocol server for Splitwise. After setup, MCP clients such as Codex, Claude Code, and Claude Desktop can use Splitwise tools for expenses, friends, groups, comments, currencies, categories, notifications, and raw documented API calls.
Related MCP server: Splitwise MCP Server
Fetch Splitwise Keys
You need three values before installation:
SPLITWISE_CONSUMER_KEYSPLITWISE_CONSUMER_SECRETSPLITWISE_API_KEY
Get them from Splitwise:
Sign in to Splitwise.
Create a new app, or open an existing app.
Copy the Consumer Key.
Copy the Consumer Secret.
Generate or copy the API key from the app details page.
Treat the API key like a password. The installer writes it to .env, and .env is ignored by git.
Install
From the repo root:
chmod +x install.sh
./install.shThe installer prompts for the three Splitwise values one after another, writes them to .env, locks the file to mode 600, and can install dependencies into venv.
Manual dependency install:
python3 -m venv venv
venv/bin/python -m pip install --upgrade pip
venv/bin/python -m pip install -r requirements.txtCodex CLI Setup
Copy and paste from the repo root:
codex mcp add splitwise -- "$(pwd)/venv/bin/python" "$(pwd)/MCP_files/server.py"Restart Codex or start a new Codex session.
Claude Code CLI Setup
Copy and paste from the repo root:
claude mcp add splitwise -- "$(pwd)/venv/bin/python" "$(pwd)/MCP_files/server.py"Restart Claude Code or start a new session.
Claude Desktop Setup
Open Claude Desktop's MCP/server configuration and add this server manually.
Use this JSON, replacing /absolute/path/to/SplitwiseMCP with your local repo path:
{
"mcpServers": {
"splitwise": {
"type": "stdio",
"command": "/absolute/path/to/SplitwiseMCP/venv/bin/python",
"args": ["/absolute/path/to/SplitwiseMCP/MCP_files/server.py"],
"env": {}
}
}
}Restart Claude Desktop after updating the config.
Project Layout
.
├── README.md
├── install.sh
├── requirements.txt
├── .env.example
└── MCP_files/
├── README.md
├── server.py
├── interactive.py
├── openapi.json
└── claude_desktop_config.example.jsonSecurity
Never commit
.env.Rotate your Splitwise API key if it is exposed.
Mutating tools can create, update, delete, and restore Splitwise records. Use read-only tools first if you are unsure.
This server cannot be deployed
Maintenance
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Use AI models for chat, image, and video generation from Claude Code and other MCP hosts.
MCP server for AI dialogue using various LLM models via AceDataCloud
Related MCP Servers
- AlicenseAqualityDmaintenanceAn MCP server for Splitwise that enables users to manage shared expenses, friends, and groups directly through AI assistants. It allows for creating, deleting, and listing expenses while providing tools to track net balances and group debts.8409 npmMIT
- FlicenseAqualityCmaintenanceA standalone MCP server that provides complete access to the Splitwise API, enabling natural language management of expenses, groups, friends, and notifications in MCP-compatible clients like Claude Desktop and VS Code Copilot.91-
- AlicenseAqualityDmaintenanceA Model Context Protocol server that enables AI assistants to manage Splitwise expenses using natural language, with support for voice commands, smart name matching, and advanced split configurations.74MIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server for Splitwise that lets you manage expenses, balances, settlements, groups, and comments in natural language from any MCP client.MIT