npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

solvent-mcp

v1.0.0

Published

MCP server for Solvent - Personal Finance Manager

Downloads

94

Readme

Solvent MCP Server

MCP (Model Context Protocol) server for Solvent - Personal Finance Manager. This allows Claude to interact with your Solvent data through natural language.

Features

  • Expenses: List, create, update, and delete expenses
  • Incomes: List, create, update, and delete incomes
  • Categories: List, create, update, and delete categories
  • Recurring Transactions: List, create, update, and delete recurring transactions

Setup

1. Create an MCP Token

  1. Log into your Solvent account
  2. Go to Settings > Tokens
  3. Click Create Token
  4. Select MCP as the token type
  5. Set the permissions you want to grant
  6. Copy the token (you won't be able to see it again!)

2. Choose Your Connection Method

Option A: Claude.ai Connector (Recommended for Web)

Use this if you want to use Claude through the web interface (claude.ai).

  1. After creating your MCP token, copy the Connector URL shown
  2. Go to Claude.ai
  3. Click on "Search and tools" > "Add connectors"
  4. Select "Add custom connector"
  5. Paste the Connector URL
  6. Click Connect

The Connector URL format is:

https://your-solvent-domain.com/api/mcp?token=slvt_your_token_here

Option B: Claude Desktop (Local)

Use this if you want to use Claude Desktop on your computer.

  1. Install Node.js (v18 or later) from nodejs.org

  2. Install the MCP server globally:

npm install -g solvent-mcp

Or run directly with npx:

npx solvent-mcp --token slvt_xxx --api-url https://your-solvent-domain.com
  1. Configure Claude Desktop by editing the config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

Add the following configuration:

{
  "mcpServers": {
    "solvent": {
      "command": "npx",
      "args": [
        "solvent-mcp",
        "--token", "slvt_your_token_here",
        "--api-url", "https://your-solvent-domain.com"
      ]
    }
  }
}
  1. Restart Claude Desktop

Usage Examples

Once connected, you can ask Claude things like:

  • "Show me my expenses from last week"
  • "Create a new expense of $50 for groceries"
  • "List all my income categories"
  • "What are my recurring expenses?"
  • "Create a monthly recurring expense of $15 for Netflix"

Available Tools

Expenses

| Tool | Description | |------|-------------| | list_expenses | List all expenses (optionally with category info) | | get_expense | Get a single expense by ID | | create_expense | Create a new expense | | update_expense | Update an existing expense | | delete_expense | Delete an expense |

Incomes

| Tool | Description | |------|-------------| | list_incomes | List all incomes (optionally with category info) | | get_income | Get a single income by ID | | create_income | Create a new income | | update_income | Update an existing income | | delete_income | Delete an income |

Categories

| Tool | Description | |------|-------------| | list_categories | List all categories (with optional filters) | | get_category | Get a single category by ID | | create_category | Create a new category | | update_category | Update an existing category | | delete_category | Delete a category |

Recurring Transactions

| Tool | Description | |------|-------------| | list_recurrings | List all recurring transactions | | get_recurring | Get a single recurring transaction by ID | | create_recurring | Create a new recurring transaction | | update_recurring | Update an existing recurring transaction | | delete_recurring | Delete a recurring transaction |

Permissions

When creating an MCP token, you can control which operations Claude can perform:

| Permission | Allows | |------------|--------| | Expenses: Read | List and view expenses | | Expenses: Write | Create, update, delete expenses | | Incomes: Read | List and view incomes | | Incomes: Write | Create, update, delete incomes | | Categories: Read | List and view categories | | Categories: Write | Create, update, delete categories | | Recurrings: Read | List and view recurring transactions | | Recurrings: Write | Create, update, delete recurring transactions |

Development

Building from Source

cd mcp-server
npm install
npm run build

Running in Development

npm run dev -- --token slvt_xxx --api-url http://localhost:3000

Security Notes

  • Your MCP token grants access to your financial data
  • Only create tokens with the minimum permissions needed
  • Revoke tokens you no longer need from the Settings page
  • The token is stored locally on your machine (Claude Desktop) or transmitted securely (Claude.ai)

Troubleshooting

"Token is not an MCP token"

Make sure you selected MCP as the token type when creating the token. API tokens cannot be used for MCP connections.

"Invalid or revoked token"

Your token may have been revoked. Create a new MCP token in Settings.

Connection issues with Claude Desktop

  1. Make sure Node.js is installed: node --version
  2. Check the Claude Desktop logs for errors
  3. Verify your config file is valid JSON
  4. Restart Claude Desktop after making config changes

License

MIT