Skip to main content
Glama

mcp-gastos-daily-driver

MCP server (Node.js + TypeScript) para captura y clasificación de gastos.

Requisitos

  • Node.js 20+

  • Docker (para Postgres local)

Related MCP server: Expense Tracker MCP Server

Setup local (dev)

  1. Levanta las bases de datos:

docker compose up -d
  1. Instala dependencias:

npm i
  1. Configura variables de entorno:

cp .env.example .env
  1. Migra y carga seed (Prisma):

npm run prisma:migrate && npm run prisma:seed
  1. Ejecuta en modo desarrollo:

npm run dev

Docker (producción)

El Dockerfile hace un build multi-stage:

  • npm ci

  • npm run prisma:generate (Prisma v7; genera el cliente en generated/prisma)

  • npm run build (TypeScript → dist/)

  • arranque: npm run start (ejecuta node dist/src/server.js)

Build

docker build -t mcp-gastos-daily-driver .

Run

docker run --rm -p 8787:8787 \
  -e PORT=8787 \
  -e DATABASE_URL_FINANCE="postgresql://user:pass@host:5432/finance_db" \
  mcp-gastos-daily-driver

Endpoint de healthcheck:

  • GET /health

Notas para Dokploy

  • Buildpack/Runtime: Dockerfile

  • Puerto: 8787 (o el que definas en PORT)

  • Healthcheck: /health

  • Variables mínimas: DATABASE_URL_FINANCE, API_KEY_SALT (+ llave de OpenRouter si usas clasificación LLM).

  • Migraciones (opcional, recomendado): ejecutar npm run prisma:deploy como comando de “pre-deploy/release” (requiere DATABASE_URL_FINANCE).

F
license - not found
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • F
    license
    B
    quality
    D
    maintenance
    MCP server for tracking personal expenses using FastMCP and SQLite, enabling adding, listing, updating, deleting expenses and summarizing by category via natural language tools.
    Last updated
    5
    1
  • F
    license
    -
    quality
    C
    maintenance
    A lightweight local MCP server for tracking personal or small-team expenses. It lets you add expense entries, list transactions within a date range, and generate simple summaries by category — all backed by a local SQLite database.
    Last updated
  • F
    license
    -
    quality
    B
    maintenance
    MCP server for personal finance management. Enables natural language expense logging, budgeting, recurring charge detection, and statement import with deterministic local calculations.
    Last updated

View all related MCP servers

Related MCP Connectors

  • Hosted MCP server for Mini Accountant: invoices, expenses, customers, analytics, tax estimates.

  • MCP server for managing Prisma Postgres.

  • TaxSort — Tollbooth-monetized MCP server for personal tax transaction classification

View all MCP Connectors

Latest Blog Posts

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/toothlesstarantula/mcp-finance'

If you have feedback or need assistance with the MCP directory API, please join our Discord server