Metadata-Version: 2.4
Name: expenselm-mcp-server
Version: 0.1.2
Summary: ExpenseLM MCP Server
Project-URL: Homepage, https://github.com/expenselm/expenselm-mcp-server
Requires-Python: >=3.12
Requires-Dist: fastmcp>=2.10.6
Requires-Dist: httpx>=0.28.1
Description-Content-Type: text/markdown

# ExpenseLM MCP Server

## Introduction

MCP server for ExpenseLM.

## Installation

### Prerequisites

* git
* Python
* uv

### Clone the source code to your local machine

```bash
git clone https://github.com/expenselm/expenselm-mcp-server.git
```

## Setup MCP Client

### Claude Desktop

Add the following MCP server in your Claude Desktop configuration.

For Mac: ~/Library/Application Support/Claude/claude_desktop_config.json

Add the following into your config file.

```json
{
  "mcpServers": {
    "expense-server": {
      "command": "uv",
      "args": [
        "run",
        "--with", "fastmcp",
        "--with", "httpx", 
        "fastmcp",
        "run",
        "~/workspace/expenselm/expenselm-mcp-server/expenselm_mcp_server.py"
      ],
      "env": {
        "EXPENSELM_API_KEY": "Your ExpenseLM API Key",
        "MCP_TIMEOUT": "200000"
      }
    }
  }
}
```
