1. Conduid
  2. Developer Tools
  3. quantix
MCP server · Developer Tools

quantix

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

Unclaimed devtools
39Low

Scored 4 months ago · breakdown

About quantix

quantix is an MCP server published by git+marcosnunesmbs in the Developer Tools category: a simple Model Context Protocol (MCP) server that provides functionalities for financial data management using the Quantix API. It has been installed 0 times through Conduid.

Install

Install
npx quantix-mcp
Claude Code
claude mcp add quantix-mcp -- npx -y quantix-mcp
npx
npx -y quantix-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about quantix

Powered by Claude · Grounded in docs

I know everything about quantix. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

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

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About quantix

How do I install quantix?

Run npx quantix-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is quantix safe to use with an AI agent?

Its trust score is 39 out of 100 (low). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is quantix still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.