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

@fipto/mcp-fipto

v1.0.3

Published

This project implements a Model Context Protocol (MCP) server for interacting with the Fipto API. It allows MCP-compatible clients to leverage Fipto functionalities through a standardized set of tools.

Readme

Fipto MCP Server

This project implements a Model Context Protocol (MCP) server for interacting with the Fipto API. It allows MCP-compatible clients to leverage Fipto functionalities through a standardized set of tools.

The core logic for the server is implemented in src/index.ts.

Prerequisites

  • Node.js (version compatible with ESM and top-level await, e.g., >=16.x)
  • NPM or Yarn for managing dependencies.
  • Access credentials and endpoint for a Fipto API instance.

Configuration

The server requires the following environment variables to be set:

  • BASE_URL: The base URL of the Fipto API.
  • USER_ID: The User ID for authenticating with the Fipto API.
  • PRIVATE_KEY: The private key associated with the USER_ID for signing API requests.

You can set these variables in your environment or use a .env file (e.g., by using a library like dotenv).

Running the Server

The server is designed to communicate over standard input/output (stdio) using StdioServerTransport from the MCP SDK.

Once transpiled with tsc, it can be run with

node dist/index.js

An MCP client will typically manage the execution of this command.

Provided Tools

The Fipto MCP server exposes the following tools:

1. list_my_companies

  • Description: Lists all companies the current user is a member of at Fipto.
  • Parameters: None.
  • Returns: A JSON object containing an array of company objects, each with details such as company ID, name, and membership role.

2. list_company_wallets

  • Description: Lists all wallets for a specific company at Fipto.
  • Parameters:
    • company_id (string, UUID): The UUID of the company.
  • Returns: A JSON object containing an array of wallet objects, each with details such as wallet ID, name, asset, and balance.

3. list_company_transactions

  • Description: Lists all transactions for a specific company at Fipto. Supports various filters.
  • Parameters:
    • company_id (string, UUID): The UUID of the company.
    • transaction_types (array of strings, optional): Filter by transaction types (e.g., "payin", "payout").
    • asset_types (array of strings, optional): Filter by asset types.
    • page_number (number, optional): For pagination.
    • page_size (number, optional): For pagination.
    • sort (string, optional): Sorting criteria.
    • wallet_id (string, UUID, optional): Filter by a specific wallet ID.
    • statuses (array of strings, optional): Filter by transaction statuses.
    • can_be_signed_by (string, UUID, optional): Filter by transactions that can be signed by a specific user ID.
  • Returns: A polymorphic array of transaction objects (each with a 'type' discriminator) that include common fields plus type‑specific attributes.

Usage with MCP Clients

This server can be integrated with any MCP-compatible client, such as the Model Context Protocol extension in VS Code. To use it, you would typically configure the client to run the server command (e.g., node dist/index.js or npx ts-node src/index.ts) and provide the necessary environment variables.

Refer to the documentation of your specific MCP client for instructions on adding and configuring custom MCP servers.

The following is an example of how it would like in VS Code (.vscode/mcp.json):

{
  "mcp": {
    "servers": {
      "fipto": {
        "command": "npx",
        "args": ["-y", "@fipto/mcp-fipto"],
        "env": {
          "BASE_URL": "https://api.fipto.app",
          "USER_ID": "abcd1234-41d3-4ca3-b191-930357973603",
          "PRIVATE_KEY": "-----BEGIN PRIVATE KEY-----\nMIIEvgIBADAN....\n-----END PRIVATE KEY-----"
        }
      }
    }
  }
}