Skip to main content
Glama

Finix MCP Server

by bquigley1

create_seller

Create a new seller identity in Finix with complete underwriting data including business details, contact information, and financial processing requirements.

Instructions

This tool creates a new Seller Identity in Finix with full underwriting data.

Required arguments:

  • email (str): The email address of the seller.

  • first_name (str): The first name of the primary contact.

  • last_name (str): The last name of the primary contact.

  • business_name (str): The legal business name.

  • business_type (str): The business type (e.g., INDIVIDUAL_SOLE_PROPRIETORSHIP, CORPORATION, etc.).

  • business_description (str): Description of the business for underwriting.

Optional arguments include extensive business and underwriting data fields. See the schema for complete field descriptions.

Input Schema

NameRequiredDescriptionDefault
ach_max_transaction_amountNo
annual_ach_volumeNo
annual_card_volumeNo
average_ach_transfer_amountNo
average_card_transfer_amountNo
business_addressNo
business_descriptionYesDescription of the business for underwriting
business_nameYesThe legal business name
business_phoneNo
business_tax_idNo
business_typeYesThe business type
card_volume_distributionNo
credit_check_allowedNo
credit_check_ip_addressNo
credit_check_timestampNo
credit_check_user_agentNo
default_statement_descriptorNo
dobNo
doing_business_asNo
emailYesThe email address of the seller
first_nameYesThe first name of the primary contact
has_accepted_credit_cards_previouslyNo
incorporation_dateNo
last_nameYesThe last name of the primary contact
max_transaction_amountNo
mccNo
merchant_agreement_acceptedNo
merchant_agreement_ip_addressNo
merchant_agreement_timestampNo
merchant_agreement_user_agentNo
ownership_typeNo
personal_addressNo
phoneNo
principal_percentage_ownershipNo
refund_policyNo
tagsNo
tax_idNo
titleNo
urlNo
volume_distribution_by_business_typeNo

Input Schema (JSON Schema)

{ "properties": { "ach_max_transaction_amount": { "type": "number" }, "annual_ach_volume": { "type": "number" }, "annual_card_volume": { "type": "number" }, "average_ach_transfer_amount": { "type": "number" }, "average_card_transfer_amount": { "type": "number" }, "business_address": { "properties": { "city": { "description": "City", "type": "string" }, "country": { "default": "USA", "type": "string" }, "line1": { "description": "Address line 1", "type": "string" }, "line2": { "type": "string" }, "postal_code": { "description": "Postal/ZIP code", "type": "string" }, "region": { "description": "State/Region (e.g., CA)", "type": "string" } }, "required": [ "line1", "city", "region", "postal_code" ], "type": "object" }, "business_description": { "description": "Description of the business for underwriting", "type": "string" }, "business_name": { "description": "The legal business name", "type": "string" }, "business_phone": { "type": "string" }, "business_tax_id": { "type": "string" }, "business_type": { "description": "The business type", "enum": [ "INDIVIDUAL_SOLE_PROPRIETORSHIP", "CORPORATION", "LIMITED_LIABILITY_COMPANY", "PARTNERSHIP", "ASSOCIATION", "GOVERNMENT_AGENCY", "OTHER" ], "type": "string" }, "card_volume_distribution": { "properties": { "card_present_percentage": { "description": "Card present percentage", "maximum": 100, "minimum": 0, "type": "number" }, "ecommerce_percentage": { "description": "Ecommerce percentage", "maximum": 100, "minimum": 0, "type": "number" }, "mail_order_telephone_order_percentage": { "description": "MOTO percentage", "maximum": 100, "minimum": 0, "type": "number" } }, "required": [ "card_present_percentage", "mail_order_telephone_order_percentage", "ecommerce_percentage" ], "type": "object" }, "credit_check_allowed": { "type": "boolean" }, "credit_check_ip_address": { "type": "string" }, "credit_check_timestamp": { "type": "string" }, "credit_check_user_agent": { "type": "string" }, "default_statement_descriptor": { "type": "string" }, "dob": { "properties": { "day": { "description": "Birth day (1-31)", "maximum": 31, "minimum": 1, "type": "integer" }, "month": { "description": "Birth month (1-12)", "maximum": 12, "minimum": 1, "type": "integer" }, "year": { "description": "Birth year", "type": "integer" } }, "required": [ "year", "month", "day" ], "type": "object" }, "doing_business_as": { "type": "string" }, "email": { "description": "The email address of the seller", "type": "string" }, "first_name": { "description": "The first name of the primary contact", "type": "string" }, "has_accepted_credit_cards_previously": { "type": "boolean" }, "incorporation_date": { "properties": { "day": { "description": "Incorporation day (1-31)", "maximum": 31, "minimum": 1, "type": "integer" }, "month": { "description": "Incorporation month (1-12)", "maximum": 12, "minimum": 1, "type": "integer" }, "year": { "description": "Incorporation year", "type": "integer" } }, "required": [ "year", "month", "day" ], "type": "object" }, "last_name": { "description": "The last name of the primary contact", "type": "string" }, "max_transaction_amount": { "type": "number" }, "mcc": { "type": "string" }, "merchant_agreement_accepted": { "type": "boolean" }, "merchant_agreement_ip_address": { "type": "string" }, "merchant_agreement_timestamp": { "type": "string" }, "merchant_agreement_user_agent": { "type": "string" }, "ownership_type": { "enum": [ "PRIVATE", "PUBLIC" ], "type": "string" }, "personal_address": { "properties": { "city": { "description": "City", "type": "string" }, "country": { "default": "USA", "type": "string" }, "line1": { "description": "Address line 1", "type": "string" }, "line2": { "type": "string" }, "postal_code": { "description": "Postal/ZIP code", "type": "string" }, "region": { "description": "State/Region (e.g., CA)", "type": "string" } }, "required": [ "line1", "city", "region", "postal_code" ], "type": "object" }, "phone": { "type": "string" }, "principal_percentage_ownership": { "maximum": 100, "minimum": 0, "type": "number" }, "refund_policy": { "enum": [ "NO_REFUNDS", "REFUNDS_WITH_RESTOCKING_FEE", "MERCHANDISE_EXCHANGE_ONLY", "FULL_REFUNDS", "OTHER" ], "type": "string" }, "tags": { "type": "string" }, "tax_id": { "type": "string" }, "title": { "type": "string" }, "url": { "type": "string" }, "volume_distribution_by_business_type": { "properties": { "business_to_business_volume_percentage": { "description": "B2B percentage", "maximum": 100, "minimum": 0, "type": "number" }, "business_to_consumer_volume_percentage": { "description": "B2C percentage", "maximum": 100, "minimum": 0, "type": "number" }, "consumer_to_consumer_volume_percentage": { "description": "C2C percentage", "maximum": 100, "minimum": 0, "type": "number" }, "other_volume_percentage": { "description": "Other percentage", "maximum": 100, "minimum": 0, "type": "number" }, "person_to_person_volume_percentage": { "description": "P2P percentage", "maximum": 100, "minimum": 0, "type": "number" } }, "required": [ "business_to_business_volume_percentage", "business_to_consumer_volume_percentage", "consumer_to_consumer_volume_percentage", "person_to_person_volume_percentage", "other_volume_percentage" ], "type": "object" } }, "required": [ "email", "first_name", "last_name", "business_name", "business_type", "business_description" ], "type": "object" }

Other Tools from Finix MCP Server

Related Tools

    MCP directory API

    We provide all the information about MCP servers via our MCP API.

    curl -X GET 'https://glama.ai/api/mcp/v1/servers/bquigley1/finix-mcp'

    If you have feedback or need assistance with the MCP directory API, please join our Discord server