# Getnet — MCP server on mcp.ai > Getnet acquirer (Santander) via the Plataforma Digital API, read-only: consult a transaction by payment_id (credit, debit, PIX, boleto), the tokenized card vault and customers. Does not create or change charges. Note, sales statement and receivables are not part of this API (they live in Extrato Eletrônico and Conciliador, separate Getnet products). Auth via the Plataforma Digital keys (client_id, client_secret and seller_id) generated in the Getnet panel. By: mcp.ai · official Page: https://mcp.ai/getnet ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_getnet?ms=1781698920000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/getnet/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/getnet/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/getnet/skill.md Postman collection (v2.1): https://mcp.ai/getnet/postman.json ## Tools - getnet_get_card(card_id: string, account?: string, card_ids?: string[]) — Consulta um cartão tokenizado do cofre (vault) por card_id (não retorna o PAN). - getnet_get_payment(tipo: string, payment_id: string, account?: string, payment_ids?: string[]) — Consulta o status de uma transação por payment_id. `tipo` seleciona o meio (credit, debit, pix, boleto). Somente leitura, não cria nem altera cobrança. - getnet_list_accounts(account?: string) — Lista os lojistas (seller_id) Getnet conectados a este install — id, label. - getnet_list_customer_cards(customer_id: string, account?: string, customer_ids?: string[]) — Lista os cartões tokenizados de um cliente no cofre (vault). - getnet_list_customers(page?: integer, limit?: integer, account?: string) — Lista clientes cadastrados. Paginado por `page`/`limit`. ## Example prompts - "Check the status of credit transaction " - "List the tokenized cards of customer " - "List the registered customers" ## Links Docs: https://mcp.ai/docs/mcps/getnet Website: https://mcp.ai/mcps/getnet