- Home
- MCP servers
- MCP Financeiro
MCP Financeiro
- typescript
0
GitHub Stars
typescript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
This MCP server orchestrates multi-tenant integrations for SGA (Hinova) and AtomOS chat within a SaaS multi-company model. It runs on Node.js with TypeScript and Hono, enabling centralized client provisioning, webhook processing, and configuration management across multiple clients.
How to use
You interact with the MCP by managing clients and letting the server handle the integration flow. Create a new client to configure all needed connections in a single step, then leverage the webhook endpoint to process IA-driven events and keep boleto workflows synchronized. You can update client-specific configurations without redeploying the server.
How to install
- Install dependencies for the server.
npm install
- Configure environment variables by copying the sample file and filling in your values.
cp .env.example .env
Edit the .env file to include your Supabase details.
SUPABASE_URL=https://seu-projeto.supabase.co
SUPABASE_SERVICE_ROLE_KEY=sua-service-role-key
Start the server and access the API
- Start the server in development mode. The server will be reachable at the given URL.
npm run dev
- Open the server URL in your browser or API client. By default, the server runs on port 3000.
Available tools
create_client
Register a new client with all required tokens and settings in a single operation.
process_webhook
Handle events from the AI agent and process boleto workflows.
update_client_config
Update partial client configurations without redeploying the server.