Integrates with the Pix instant payment system to process and deliver payment information and billing status as part of an automated financial orchestration workflow.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Financeiroenviar boleto e pix para a placa NPU0901"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Financeiro - API Multi-Empresas
Servidor API em Node.js + TypeScript + Hono para orquestrar integrações SGA (Hinova) e Chat Atomos em modelo SaaS multi-empresas.
Pré-requisitos
Node.js 18+
Conta Supabase
Tokens: token_erp (Hinova SGA), token_chat e token_canal (Atomos)
Setup
1. Instalar dependências
2. Configurar variáveis de ambiente
Copie .env.example para .env e preencha:
3. Executar migrations no Supabase
No Supabase Dashboard > SQL Editor, execute o conteúdo do arquivo:
supabase/migrations/001_initial_schema.sql
4. Iniciar o servidor
O servidor estará em http://localhost:3000.
Endpoints
POST /api/v1/clientes
Cadastra um cliente com todas as configurações em uma única chamada.
Body:
POST /api/v1/webhook
Recebe eventos do agente de IA (placa, telefone) e processa o fluxo de boleto.
Body ou Header X-Client-Id:
Response: { "message": "..." } - texto formatado para a LLM.
PATCH /api/v1/clientes/:id/configuracoes
Atualiza configurações parciais de um cliente.
Scripts
npm run dev- Inicia em modo watchnpm run start- Inicia em produçãonpm run typecheck- Verifica tipos TypeScript