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

quantix-mcp

v0.3.9

Published

A simple Model Context Protocol (MCP) server that provides functionalities for financial data management using the Quantix API.

Readme

Quantix Personal Finance MCP Server

MCP (Model Context Protocol) server for the Quantix Personal Finance API. Exposes all endpoints as MCP tools with full input validation and modular architecture.

Features

  • Accounts: Manage bank accounts, wallets, savings, and investments.
  • Categories: Create, list, update, and delete financial categories (INCOME/EXPENSE).
  • Credit Cards: Manage cards, view/pay statements, and track statement status.
  • Transactions: Full CRUD with filters (month, date range, account, category, card, type, paid status), recurring payments, and installment handling.
  • Transactions (paid status): Mark transactions as paid or unpaid.
  • Settings: Manage global user preferences (name, currency, language).
  • Summary: Financial summary by month or custom date range — income, expenses, balance, credit card totals, and category breakdowns.
  • Data: Export and import a full backup of all user data.

All tool inputs are validated using Zod schemas matching the OpenAPI spec.

Prerequisites

  • Node.js (v18 or higher)
  • npm
  • Access to Quantix API and API Key

Installation

  1. Clone or navigate to the project repository.

  2. Install dependencies:

    npm install

Configuration

Create a .env file in the project root:

QUANTIX_API_URL=https://api.quantix.example.com
QUANTIX_API_KEY=your_api_key_here
MCPPORT=3001

Building the Project

npm run build

The compiled output will be in the dist directory.

Usage

Quick Start (npx)

npx quantix-mcp

Make sure the environment variables (QUANTIX_API_URL, QUANTIX_API_KEY) are set in your environment.

Development

npm run dev

Production

npm start

MCP Inspector (Recommended for Testing)

  1. Build the project:
    npm run build
  2. Run the inspector:
    npx @modelcontextprotocol/inspector node dist/index.js
  3. Open the provided URL to interact with your server.

Exposed MCP Tools

| Category | Tool Name | Description | |----------|-----------|-------------| | Accounts | create_account | Create a new financial account | | | get_accounts | List all accounts with current balances | | | get_account | Get details of a specific account | | | update_account | Update account name or type | | | delete_account | Delete an account | | | get_account_balance | Get current balance for an account | | | get_account_transactions | List all transactions linked to an account | | Categories | create_category | Create a new financial category (INCOME/EXPENSE) | | | get_categories | List all categories | | | get_category | Get a category by ID | | | update_category | Update category name or color | | | delete_category | Delete a category | | Credit Cards | create_credit_card | Create a new credit card | | | get_credit_cards | List all credit cards | | | get_credit_card | Get a credit card by ID | | | update_credit_card | Update credit card details | | | delete_credit_card | Delete a credit card | | | get_statement | Get statement for a specific month (YYYY-MM) | | | get_statement_status | Get payment status of a statement | | | pay_statement | Mark all statement transactions as paid | | Transactions | create_transaction | Record a new income or expense | | | get_transactions | List transactions — filters: month, startDate, endDate, accountId, categoryId, creditCardId, type, paid | | | get_transaction | Get transaction details by ID | | | update_transaction | Update a transaction (supports mode: SINGLE / PENDING / ALL for recurring/installments) | | | pay_transaction | Mark a transaction as paid/received | | | unpay_transaction | Mark a transaction as unpaid | | | delete_transaction | Delete a transaction (supports mode: SINGLE / PENDING / ALL) | | Settings | create_settings | Create global user settings (only if not yet created) | | | get_settings | Get global settings | | | update_settings | Update global settings | | Summary | get_summary | Financial summary — provide month (YYYY-MM) or startDate + endDate (YYYY-MM-DD) | | Data | export_data | Export all user data as a complete backup | | | import_data | Import a backup (mode: reset clears all data first, increment skips existing IDs) |

See openapi.yaml at the project root for full endpoint and schema details.

Setup with Claude Desktop

  1. Locate your Claude Desktop configuration file:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
  2. Add the server configuration:

    Using npx (Recommended):

    {
      "mcpServers": {
        "quantix": {
          "command": "npx",
          "args": ["-y", "quantix-mcp"],
          "env": {
            "QUANTIX_API_URL": "https://api.quantix.example.com",
            "QUANTIX_API_KEY": "your_api_key_here"
          }
        }
      }
    }

    Using local build (For developers):

    {
      "mcpServers": {
        "quantix": {
          "command": "node",
          "args": ["/absolute/path/to/dist/index.js"],
          "env": {
            "QUANTIX_API_URL": "https://api.quantix.example.com",
            "QUANTIX_API_KEY": "your_api_key_here"
          }
        }
      }
    }

Testing

npm test

License

ISC