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

n8n-nodes-faktoapp-fakturownia

v0.1.4

Published

n8n community node for Fakturownia Polish invoicing software via MCP server

Readme

n8n-nodes-faktoapp-fakturownia

This is an n8n community node for Fakturownia — a popular Polish online invoicing platform. It connects to the Fakturownia API through the Fakto MCP server.

n8n is a fair-code licensed workflow automation platform.

Prerequisites

  • An active Fakturownia account with API access (API token)
  • A Fakto subscription API key
  • n8n v1.0.0 or later

Installation

Follow the installation guide in the n8n community nodes documentation.

npm install n8n-nodes-faktoapp-fakturownia

Credentials

Configure the Fakturownia API credential in n8n:

| Field | Description | |-------|-------------| | MCP Server URL | URL of the MCP server (default: https://fakto.app) | | API Token | Your Fakturownia API token | | Subdomain | Your Fakturownia subdomain (e.g. mycompany from mycompany.fakturownia.pl) | | Subscription API Key | Your Fakto subscription key |

Resources & Operations

Invoice

  • Get Many — List invoices with filters (date range, type, client, payment status, amounts)
  • Get — Get single invoice by ID
  • Get by Number — Find invoice by number
  • Search — Full-text search across invoice number, client name, items, and notes
  • Get by Client — List invoices by client ID
  • Get by Client Tax No — List invoices by client NIP
  • Create — Create a new invoice
  • Update — Update an existing invoice
  • Download PDF — Download invoice as PDF

Contractor

  • Get Many — List contractors with filters
  • Get — Get single contractor by ID
  • Get by Tax No — Find contractor by NIP
  • Search — Full-text search across multiple contractor fields
  • Create — Create a new contractor
  • Update — Update an existing contractor

Product

  • Get Many — List products
  • Get — Get single product by ID
  • Get by Code — Find product by code/SKU
  • Search — Full-text search products
  • Create — Create a new product
  • Update — Update an existing product
  • Delete — Delete a product

Warehouse

  • Get Warehouses — List warehouses
  • Get Stock — Get current stock levels
  • Get Documents — List warehouse documents
  • Get Document — Get single warehouse document
  • Create Document (In) — Create incoming document (PZ)
  • Create Document (Out) — Create outgoing document (WZ)
  • Create Document (Internal) — Create internal transfer (MM)
  • Update Document — Update a warehouse document
  • Delete Document — Delete a warehouse document

Analytics

  • Calculate Profit — Calculate profit for a period
  • Financial Analytics — Detailed financial analysis
  • Sales Analytics — Sales analytics and trends
  • Revenue Report — Revenue report
  • Expenses Report — Expenses report
  • Warehouse Report — Warehouse analytics report

AI Agent Integration

This node can be used as a tool for the AI Agent node in n8n. The AI Agent can automatically invoke Fakturownia operations (search invoices, create contractors, generate reports, etc.) based on natural language instructions.

Option 1: Use as AI Agent Tool (recommended)

Simply add the Fakturownia node as a tool in your AI Agent configuration. The node has usableAsTool enabled, so it appears in the tool list automatically.

Option 2: Connect via MCP Client

Since this node communicates with an MCP server, you can also use the built-in MCP Client node to connect the AI Agent directly to the Fakto MCP server:

  1. Add an MCP Client tool to your AI Agent node
  2. Set the SSE URL to https://fakto.app/fakturownia/stream
  3. Add authentication headers with your Fakturownia credentials:
    {
      "x-fakturownia-credentials": "{\"token\":\"YOUR_TOKEN\",\"subdomain\":\"YOUR_SUBDOMAIN\",\"subscriptionApiKey\":\"YOUR_KEY\"}"
    }
  4. The AI Agent will automatically discover all 37 available tools from the MCP server

Compatibility

Tested with n8n v1.0.0 and later. Requires Node.js 22+.

License

MIT