FinCobra MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| FINCOBRA_API_KEY | No | Optional Checkout dashboard API key (alternative to FINCOBRA_CHECKOUT_API_KEY). | |
| FINCOBRA_CONFIG_DIR | No | Override the local directory for the saved CLI credential. | |
| FINCOBRA_AUTH_BASE_URL | No | Browser login API origin. Defaults to https://watch.fincobra.com. | https://watch.fincobra.com |
| FINCOBRA_CHECKOUT_API_KEY | No | Optional Checkout dashboard API key. | |
| FINCOBRA_CHECKOUT_BASE_URL | No | Checkout origin. Defaults to https://fincobra.com. | https://fincobra.com |
| FINCOBRA_WATCHLIST_BASE_URL | No | Watchlist origin. Defaults to https://watch.fincobra.com. | https://watch.fincobra.com |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| create_invoiceA | Create a FinCobra Checkout invoice in USD and return the hosted payment URL. Payment methods (Bitcoin, Ethereum USDT/USDC, Solana USDT/USDC, Arbitrum One USDC, Base USDC) are those enabled in the merchant dashboard. |
| get_invoiceA | Look up a known FinCobra Checkout invoice by id. Returns status, hosted payment URL, and amounts. |
| get_net_worthA | Read Watchlist net worth from existing list APIs. Banks, cash, and property are manual entries. Live crypto USD balances are not on the list API and come back as null. |
| list_sourcesA | List Watchlist wallets, exchanges, and manual bank/cash/property sources. Includes stored token PnL cost-basis rows when the API has them. Does not add wallets or edit assets. |
| get_sourceA | Look up one Watchlist source by the id returned from list_sources. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
All five tools have clearly distinct responsibilities: invoice lookup/creation are separate, and net-worth/source actions are separate. get_source and list_sources follow the standard item-vs-collection pattern. There is no meaningful overlap.
Names consistently follow a verb_noun pattern: get_invoice, create_invoice, list_sources, get_source, and get_net_worth. The convention is uniform and predictable across both subdomains.
Five tools is a compact, appropriate size for a server covering Checkout invoices and Watchlist reads. Each tool serves a distinct need without redundancy.
The invoice side covers create and lookup but not list, cancel, or update operations, and the Watchlist side is read-only with no way to add or edit sources. These are notable lifecycle gaps, though the core read and checkout workflows are present.