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

Finix MCP

Unofficial Local MCP for Finix users

Unclaimed last commit a year ago devtools
41Fair

Scored 4 months ago · breakdown

About Finix MCP

Finix MCP is an MCP server published by bquigley1 in the Developer Tools category: unofficial Local MCP for Finix users. It has been installed 0 times through Conduid.

The repository has 2 stars and 1 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx finix-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 Finix MCP

Powered by Claude · Grounded in docs

I know everything about Finix MCP. 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

Finix MCP Server (Unofficial)

An unofficial, local MCP (Model Context Protocol) server that provides simplified access to Finix payment processing functionality.

⚠️ This is an unofficial, community-built MCP server. It is not affiliated with or endorsed by Finix.

Features

  • Documentation Search: Search Finix documentation through an MCP-compatible interface
  • Identity Management: Create and list buyers and sellers with simplified parameters
  • Payment Links: Create payment links with just merchant ID, price, and quantity
  • Streamlined API: All tools use simple parameters for ease of use and reduced token usage

Installation

npm install

Configuration

Set your Finix credentials and environment:

export FINIX_USERNAME="your-username"
export FINIX_PASSWORD="your-password"
export FINIX_ENVIRONMENT="Sandbox"  # or "Live"

Environment options:

  • Sandbox (default) - Uses https://finix.sandbox-payments-api.com
  • Live or Production - Uses https://finix.live-payments-api.com

Usage

Running the Server

Start the MCP server:

npm start

For development with auto-reload:

npm dev

Build TypeScript

npm run build

Integrating with Claude Code

Add this configuration to your Claude Code mcp file:

{
  "mcpServers": {
    "finix-docs": {
      "command": "npx",
      "args": ["tsx", "/path/to/finix-mcp/server.ts"],
      "env": {
        "FINIX_USERNAME": "your-username",
        "FINIX_PASSWORD": "your-password",
        "FINIX_ENVIRONMENT": "Sandbox" //Or 'Live' for Live
      }
    }
  }
}

Available Tools

search_finix_docs

Search the Finix documentation for relevant information.

Parameters:

  • query (string, required): The search query to find relevant Finix documentation
  • limit (number, optional): Maximum number of results to return (default: 10)
  • category (string, optional): Filter by document category ("api", "docs", or "all")

create_buyer

Create a new buyer identity with essential information.

Parameters:

  • email (string, required): The email address of the buyer
  • first_name (string, required): The first name
  • last_name (string, required): The last name
  • phone (string, required): The phone number

Returns: {id: "buyer_id"}

create_seller

Create a new seller identity with comprehensive business information.

Parameters:

  • Multiple required fields including email, business details, and underwriting information
  • See tool schema for complete parameter list

Returns: Full seller object with all details

list_buyers

Fetch a list of buyers with simple filtering.

Parameters:

  • limit (number, optional): Number of buyers to return (1-100)
  • email (string, optional): Filter by email address

Returns: [{id: "buyer_id"}, ...]

list_sellers

Fetch a list of sellers with simple filtering.

Parameters:

  • limit (number, optional): Number of sellers to return (1-100)
  • email (string, optional): Filter by email address

Returns: [{id: "seller_id"}, ...]

create_payment_link

Create a payment link for processing payments.

Parameters:

  • merchant_id (string, required): The ID of the merchant
  • price (number, required): The unit price in cents
  • quantity (number, required): The quantity of the product

Returns: {id: "payment_link_id", url: "https://..."}

Development

The server is built with:

  • TypeScript for type safety
  • @modelcontextprotocol/sdk for MCP implementation
  • Native fetch API for HTTP requests
  • StdioServerTransport for communication

License

ISC

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

Questions

About Finix MCP

How do I install Finix MCP?

Run npx finix-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 Finix MCP safe to use with an AI agent?

Its trust score is 41 out of 100 (fair). 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 Finix MCP still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.