MCP Server for XLS and CSV processing
Overview
MCP Server is a Java-based server designed for processing XLS and CSV files, enabling efficient data handling and manipulation.
To use the MCP Server, set it up in your Java environment, implement the necessary controllers and services, and access the Swagger UI at localhost:8080/swagger-ui/index.html for API documentation.
- Supports processing of XLS and CSV file formats - Integration with OpenAPI for easy API documentation - Logging capabilities using SLF4j
- Data import and export for applications using XLS and CSV formats.
- Automated data processing tasks in data analysis workflows.
- Backend services for applications requiring file uploads and processing.
Add to your AI client
Use these steps to connect MCP Server for XLS and CSV processing in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"ics6-java-mcp-csv-server-rozeqz": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ics6-java-mcp-csv-server-rozeqz"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"ics6-java-mcp-csv-server-rozeqz": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ics6-java-mcp-csv-server-rozeqz"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"ics6-java-mcp-csv-server-rozeqz": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ics6-java-mcp-csv-server-rozeqz"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"ics6-java-mcp-csv-server-rozeqz": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ics6-java-mcp-csv-server-rozeqz"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"ics6-java-mcp-csv-server-rozeqz": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ics6-java-mcp-csv-server-rozeqz"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"ics6-java-mcp-csv-server-rozeqz": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ics6-java-mcp-csv-server-rozeqz"
]
}
}
}FAQ
What programming language is used for MCP Server?
MCP Server is developed in Java.
How can I access the API documentation?
You can access the API documentation via Swagger UI at `localhost:8080/swagger-ui/index.html`.
Is there any logging support in MCP Server?
Yes, MCP Server uses SLF4j for logging.