feat: add Finance MCP workflow
Some checks failed
Deploy Finance MCP Service / build-mcp (push) Successful in 5m21s
Deploy to Production / Build and Test (push) Successful in 10m12s
Deploy Finance MCP Service / deploy-mcp (push) Failing after 4s
Deploy to Production / Deploy to Server (push) Successful in 6m24s

This commit is contained in:
你的用户名
2025-11-08 19:39:10 +08:00
parent 8469cd8d83
commit 076b9fac5f
16 changed files with 2069 additions and 1268 deletions

View File

@@ -0,0 +1,12 @@
import process from 'node:process';
import pino from 'pino';
const level =
process.env.FINANCE_MCP_LOG_LEVEL ?? process.env.LOG_LEVEL ?? 'info';
export const logger = pino({
name: 'finwise-finance',
level,
});
export type Logger = typeof logger;