Skip to main content
Glama
hubshashwat

Splitwise MCP Server

by hubshashwat

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
GEMINI_API_KEYNoGemini API Key (optional, needed for text_command feature)
DEEPGRAM_API_KEYNoDeepgram API Key (optional, needed for voice_command feature)
SPLITWISE_API_KEYYesSplitwise API Key (required for core features)
SPLITWISE_CONSUMER_KEYYesSplitwise Consumer Key (required for core features)
SPLITWISE_CONSUMER_SECRETYesSplitwise Consumer Secret (required for core features)

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
voice_commandA

Process a voice command for Splitwise.

Accepts base64-encoded audio (WAV or MP3 format), transcribes it using Deepgram, processes the intent using Gemini, and executes Splitwise actions.

Args: audio_base64: Base64-encoded audio data (WAV or MP3).

Returns: The result of the voice command (e.g., confirmation, clarification request, or error).

text_commandA

Process a text command for Splitwise.

Interprets natural language text using Gemini and executes Splitwise actions. Use this when you already have text (e.g., from a chat message) instead of audio.

Args: text: Natural language command (e.g., "Split 50 with Sumeet for dinner").

Returns: The result of the command (e.g., confirmation, clarification request, or error).

configure_splitwiseA

Configure the Splitwise client with API credentials. You must provide either (consumer_key AND consumer_secret) OR api_key.

login_with_tokenA

Log in using an existing OAuth2 Access Token. Useful for integrations where authentication is handled externally (e.g. ChatGPT).

list_friendsA

List all friends of the current user on Splitwise. Returns a formatted string list of friends.

add_expenseA

Add an expense to Splitwise, supporting unequal splits, groups, and precise control.

Args: amount: The total cost (e.g., "70", "10.50"). description: A brief description. friend_names: Friends to split with. Can be empty if using group_name. split_map: Optional dict for unequal splits. Keys=Names (or 'me'), Values=Amount/Percentage. Example: {'me': '40%', 'Alice': '60%'} or {'me': '10', 'Bob': '20'} group_name: Optional group to add expense to. payer_name: Optional name of who paid. Defaults to 'me'. exclude_names: Optional list of names to exclude from a group split.

delete_expenseB

Delete an expense by its ID.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.7/5.0

Scored across 7 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: authentication setup, login, adding/deleting expenses, listing friends, and text/voice command processing. No overlapping functionality.

Naming Consistency4/5

Most tools follow a verb_noun pattern (add_expense, delete_expense, list_friends), but login_with_token and configure_splitwise are slightly different, and text_command/voice_command are adjective_noun. Minor inconsistency but still readable.

Tool Count5/5

Seven tools cover essential Splitwise actions like authentication (configure, login), expense management (add, delete), friend listing, and natural language interfaces, which is well-scoped for the server's purpose.

Completeness2/5

Notable missing operations: no update or get/list expenses (only add/delete), no group management beyond expense addition, and no tool to retrieve expense details. The command tools may partially compensate but lack explicit coverage.

Maintenance

ActivityInactive
ResponsivenessNo issues