FinCobra MCP
FinCobra MCP — Claude, Cursor, Codex용 암호화폐 Checkout
Model Context Protocol(MCP) 서버로, FinCobra 암호화폐 Checkout 및 결제를 위한 것입니다. BTC, USDT, USDC에 대한 호스팅 인보이스를 생성합니다(결제 자산은 대시보드 결제 수단에서 가져오며, 금액은 USD입니다). Claude Code, Cursor, Codex에서 작동합니다. Watchlist 접근은 읽기 전용입니다. 아직 npm에 없습니다 — GitHub에서 설치하세요.
fincobra-mcp 0.1.0은 아직 npm에 게시되지 않았습니다. 게시될 때까지 GitHub에서 설치하세요:
npx -y github:dexstandard/fincobra-mcpnpx -y github:dexstandard/fincobra-mcp#v0.1.0으로 소스 릴리스를 고정하세요. Node.js 20+가 필요합니다.
Checkout: 호스팅 결제 인보이스를 생성하고 상태를 읽습니다.
Watchlist: 읽기 전용 소스 목록 및 수동 순자산 내역.
이것은 결제 플랫폼이 아니며 Watchlist 쓰기 API도 아닙니다.
도구 (v0)
Checkout
도구 | 기능 |
| USD 인보이스를 생성합니다. |
|
|
list_invoices 도구는 없습니다. Checkout API 키로는 인보이스를 나열할 수 없습니다.
인보이스 금액은 USD입니다. 결제 자산은 대시보드 결제 수단에서 가져옵니다:
네트워크 | 자산 |
Bitcoin (xpub) | BTC |
Ethereum mainnet | USDT, USDC |
Solana | USDT, USDC |
Arbitrum One | USDC |
Base | USDC |
Watchlist (읽기 전용)
도구 | 기능 |
| 수동 은행/현금/부동산 합계를 USD로 표시합니다. |
| 기존 목록 API의 지갑, 거래소, 수동 자산을 표시합니다. |
| id로 하나의 소스를 조회합니다( |
Watchlist에는 공개 API 키가 없습니다. 인증은 Watchlist 웹 앱에서 사용하는 Identity session 쿠키입니다.
은행, 현금, 부동산은 실시간 은행 또는 소유권 피드가 아닌 수동 제품 항목입니다. 실시간 암호화폐 USD 잔액은 Watchlist UI에서 계산되며 목록 API에 포함되지 않습니다. 서버는 cryptoUsd 합계를 임의로 만들지 않습니다.
Watchlist 도구는 지갑을 추가하거나, 은행을 편집하거나, 결제를 변경하거나, 세금을 내보내지 않습니다.
Related MCP server: Infini Payment MCP Server
환경
변수 | 필수 여부 | 설명 |
| 두 영역 중 하나 | Checkout 대시보드 API 키( |
| 아니요 | Checkout 오리진. 기본값은 |
| 두 영역 중 하나 | Identity |
| 아니요 | Watchlist 오리진. 기본값은 |
Checkout, Watchlist 또는 둘 다 구성하세요. 누락된 영역의 도구는 구성 오류를 반환합니다.
개발 오리진: https://dev.fincobra.com 및 https://watch.dev.fincobra.com.
Cursor
.cursor/mcp.json(프로젝트) 또는 ~/.cursor/mcp.json(사용자)에 추가하세요:
{
"mcpServers": {
"fincobra": {
"command": "npx",
"args": ["-y", "github:dexstandard/fincobra-mcp"],
"env": {
"FINCOBRA_CHECKOUT_API_KEY": "fc_live_...",
"FINCOBRA_CHECKOUT_BASE_URL": "https://fincobra.com",
"FINCOBRA_WATCHLIST_SESSION_TOKEN": "<session-cookie-value>",
"FINCOBRA_WATCHLIST_BASE_URL": "https://watch.fincobra.com"
}
}
}
}Claude Code
claude mcp add fincobra \
--env FINCOBRA_CHECKOUT_API_KEY=fc_live_... \
--env FINCOBRA_WATCHLIST_SESSION_TOKEN=<session-cookie-value> \
-- npx -y github:dexstandard/fincobra-mcp또는 동일한 mcpServers 객체를 .mcp.json / ~/.claude.json에 추가하세요.
Codex
codex mcp add fincobra \
--env FINCOBRA_CHECKOUT_API_KEY=fc_live_... \
--env FINCOBRA_WATCHLIST_SESSION_TOKEN=<session-cookie-value> \
-- npx -y github:dexstandard/fincobra-mcp또는 ~/.codex/config.toml에:
[mcp_servers.fincobra]
command = "npx"
args = ["-y", "github:dexstandard/fincobra-mcp"]
[mcp_servers.fincobra.env]
FINCOBRA_CHECKOUT_API_KEY = "fc_live_..."
FINCOBRA_WATCHLIST_SESSION_TOKEN = "<session-cookie-value>"로컬에서 실행
npm install
FINCOBRA_CHECKOUT_API_KEY=fc_live_... \
FINCOBRA_WATCHLIST_SESSION_TOKEN=... \
npm start프로세스는 stdio를 통해 MCP를 사용합니다. 애플리케이션 로그를 stdout에 작성하지 마세요.
스모크 테스트
FINCOBRA_CHECKOUT_API_KEY=fc_live_... \
FINCOBRA_WATCHLIST_SESSION_TOKEN=... \
npm run smoke단위 테스트는 API를 모킹하므로 자격 증명이 필요하지 않습니다:
npm test인증
영역 | 자격 증명 | 헤더 / 쿠키 |
Checkout | 대시보드 API 키( |
|
Watchlist | Identity 세션 쿠키( |
|
로그인된 브라우저(DevTools → Application → Cookies)에서 Watchlist session 쿠키를 복사하세요. 키와 세션 토큰은 채팅이 아닌 MCP 서버 환경 변수에 보관하세요.
API
Checkout:
POST /api/checkout/invoicesGET /api/checkout/invoices/:id인증:
X-Api-Key
Watchlist:
GET /api/watchlist/walletsGET /api/watchlist/exchangesGET /api/watchlist/manual-assetsGET /api/watchlist/fx-rates인증:
Cookie: session=...
결제자를 paymentUrl로 보내세요. confirmed와 paid_out_of_band는 결제 완료로 처리하세요. 확인되지 않은 암호화폐 결제를 수락하지 않는 한 payment_detected는 대기 중으로 처리하세요.
라이선스
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- -licenseNot gradedqualityNot gradedmaintenanceEnables form management, response handling, and analytics through the Fillout.io API for enhanced form interactions and insights.
- AlicenseAqualityDmaintenanceEnables cryptocurrency payment processing through the Infini Payment API, supporting order management, multi-chain withdrawals, and webhook verification for USDC/USDT transactions.71AGPL 3.0

Conekta MCP Serverofficial
FlicenseAqualityDmaintenanceEnables interaction with the Conekta payment API to manage orders, customers, subscriptions, and financial transactions. It provides a comprehensive suite of tools for core payment operations like processing refunds, creating checkouts, and monitoring account balances.322- AlicenseBqualityDmaintenanceEnables interaction with the Telnyx API for billing, phone numbers, and messaging.12MIT
Related MCP Connectors
Access SEC filings, insider transactions, and financial data via the ShareSEER API.
Create payment orders, checkout, subscriptions & UPI via PineLabs Plural PG gateway
Connect to the COTI blockchain to manage accounts, transfer native tokens, and deploy and operate…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/dexstandard/fincobra-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server