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

kanithan-mcp

v1.2.0

Published

MCP server adapter for Kanithan Expense & Habit Tracker

Readme

Kanithan MCP Server

The official Model Context Protocol (MCP) server for the Kanithan Expense, Habit & Trip Tracker.

This server allows AI agents (like Claude Desktop, Cline, and Cursor) to securely interact with your personal Kanithan database to log expenses and habits directly via conversational prompts.

Setup Instructions

1. Generate an API Token

First, log into your Kanithan account and navigate to Settings > API Access. Generate a new Personal Access Token (PAT) with the necessary scopes (e.g., expenses:write, habits:read).

Copy this token—it will start with knth_.

2. Configure Your AI Agent

You do not need to clone this repository. Simply add the following configuration to your MCP client (like Claude Desktop's claude_desktop_config.json or Cline's cline_mcp_settings.json):

{
  "mcpServers": {
    "kanithan": {
      "command": "npx",
      "args": ["-y", "kanithan-mcp"],
      "env": {
        "KANITHAN_API_TOKEN": "knth_YOUR_GENERATED_TOKEN_HERE"
      }
    }
  }
}

By default, the server connects to the production Kanithan API. If you are a developer testing locally or on the dev environment, you can override the API URL by adding the KANITHAN_API_URL environment variable:

      "env": {
        "KANITHAN_API_TOKEN": "knth_YOUR_GENERATED_TOKEN_HERE",
        "KANITHAN_API_URL": "https://family-expense-tracker-fe21f.web.app/api/v1"
      }

Supported Tools

Habit Tools

  • list_habits — Discover your configured habits and their internal IDs.
  • log_habit — Log a specific value or boolean status to a habit on a given date.
  • get_habit_summaryNEW Get a monthly breakdown for a habit: completed days, total value, and per-day detail.

Expense Tools

  • log_expense — Log a daily expense into your family dashboard.
  • delete_expenseNEW Permanently delete an expense by ID (owner only).
  • edit_expenseNEW Update amount, category, date, or note on an existing expense (owner only).

Trip Tools

  • list_trips — List all trips you are a member of (use this to get tripId).
  • create_trip — Create a new trip with a name, description, and dates.
  • add_trip_expense — Add an expense to a specific trip, with payer and optional splits.
  • get_trip_settlement — Get the full settlement report: who paid, net balances, and who owes whom.

API Documentation

Interactive Swagger UI is available after app deployment at:

https://app.kanithan.in/api/v1/swagger.html

The raw OpenAPI 3.0 spec is at /api/v1/openapi.json.