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

firefly-iii-mcp

v1.1.0

Published

Model Context Protocol server for Firefly III's personal finance API.

Readme

firefly-iii-mcp

A Model Context Protocol (MCP) server that exposes curated tools for the Firefly III personal finance API. It is designed to be consumed by MCP-aware assistants so they can query account data, run autocompletion endpoints, and inspect transactions on behalf of the user.

Why use this MCP server?

  • Thin wrapper over the official Firefly III REST API with built-in parameter validation via Zod.
  • Ships as an executable MCP server so you never need to generate your own build artefacts.
  • Works with any assistant or automation platform that speaks the Model Context Protocol over stdio.

Prerequisites

  • A running instance of Firefly III with API access enabled.
  • A personal access token that can read the resources you want to expose.
  • Node.js 18 or later to install and run the MCP server locally.

Installation

Install the package globally (or add it to the environment that hosts your MCP clients):

npm install -g firefly-iii-mcp

You can also run it ad hoc with npx when configuring a new assistant:

npx firefly-iii-mcp --stdio

Configuration

Set the required Firefly III credentials before launching the server. A sample configuration lives in .env.example.

  • FIREFLY_III_BASE_URL: For example https://demo.firefly-iii.org.
  • FIREFLY_III_PAT: Personal access token generated from your Firefly III profile.

Export these variables in the same shell session that starts the MCP server, or store them in the configuration mechanism used by your assistant platform.

Running the MCP server

The CLI entry point speaks MCP over stdio, which allows plug-and-play integration with most clients:

firefly-iii --stdio

Refer to your assistant's documentation for details on registering an external MCP server. Typically, you will point it to the executable above and ensure the environment variables are in scope. Once connected, each Firefly III endpoint is published as an MCP tool that returns formatted JSON responses.

Tool catalogue

A curated summary of the most common tools lives in docs/TOOLS.md, together with examples for programmatically exploring the full catalogue.

Development notes

While consumers do not need to build anything manually, contributors can run:

npm install
npm run build

npm run build compiles TypeScript into the build/ directory and preserves the executable shebang for the CLI. The prepublishOnly script keeps published artefacts up to date.

Release notes

Version history and notable changes are documented in CHANGELOG.md.

Contributing

Contribution guidelines, commit conventions and release workflow details are documented in CONTRIBUTING.md.

Support

Questions, feature ideas, or bug reports are welcome on the issue tracker or via email at [email protected].