MCP.so
登录

Spring AI MCP Batch Job Server

@iAMSagar44

关于 Spring AI MCP Batch Job Server

A Spring Boot Model Context Protocol (MCP) server that provides batch processing tools for financial transactions.

基本信息

分类

其他

运行时

java

传输方式

stdio

发布者

iAMSagar44

配置

暂无标准配置

该服务器的 README 中没有可解析的 MCP 配置块,请前往代码仓库查看安装说明。

代码仓库

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is Spring AI MCP Batch Job Server?

A Spring Boot Model Context Protocol (MCP) server that exposes batch processing tools for financial transactions. It integrates Spring AI’s MCP Server Boot Starter (STDIO transport) with Spring Batch and OpenAI to read CSV files, categorize transactions by type, and persist results in PostgreSQL. Designed for AI assistant workflows (e.g., Claude Desktop) that need to launch, monitor, or retry batch jobs.

How to use Spring AI MCP Batch Job Server?

Build the project with ./mvnw clean install to produce a JAR. Then configure an MCP client (e.g., Claude Desktop) with a JSON entry specifying the java command, the JAR path, and the OPENAI_API_KEY environment variable. No web server is started; the client launches the server automatically over STDIO.

Key features of Spring AI MCP Batch Job Server

  • Three MCP tools: startJob, restartJob, getJobStatus
  • Reads CSV files from the user's Downloads directory
  • AI-powered transaction categorization via OpenAI (gpt‑4o)
  • Spring Batch pipeline with file movement, processing, and cleanup steps
  • Persists results to PostgreSQL tables automatically
  • Full STDIO transport; no HTTP server required

Use cases of Spring AI MCP Batch Job Server

  • An AI assistant triggers a batch job to process a daily CSV of expenses.
  • A user restarts a failed job by providing the execution ID.
  • A monitoring workflow repeatedly checks job status until completion.

FAQ from Spring AI MCP Batch Job Server

What runtime dependencies does Spring AI MCP Batch Job Server require?

Java 21+, a running PostgreSQL instance, and an OpenAI API key set as the OPENAI_API_KEY environment variable.

How does the batch processing pipeline work?

It moves the input CSV to a safe location, reads and categorizes transactions using AI, writes data to PostgreSQL tables, then cleans up temporary files.

What transport does the server use?

STDIO transport only. The server has spring.main.web-application-type=none and is intended to be launched automatically by an MCP client.

Where does the processed transaction data get stored?

In a PostgreSQL database with tables: financial_transactions, credit_transactions, credit_card_payments, and categories. Spring Batch meta‑data tables are also created automatically.

How do I configure the server for Claude Desktop?

Add a JSON entry under mcpServers with the java command, the JAR path, and the OPENAI_API_KEY environment variable as shown in the README.

评论

其他 分类下的更多 MCP 服务器