MCP.so
登录

mysheet MCP Server

@lgwanai

关于 mysheet MCP Server

Mysheet-mcp is a MCP Server for converting Excel files into JSON format, particularly useful for data processing when called within large models or Agents.

基本信息

分类

其他

许可证

MIT

运行时

java

传输方式

stdio

发布者

lgwanai

配置

暂无标准配置

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

代码仓库

工具

未检测到工具

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

概览

What is mysheet MCP Server?

mysheet MCP Server is a Model Context Protocol server that converts Excel files into JSON format, with optional automatic uploading of embedded files to Tencent Cloud COS (Object Storage). It is designed for data processing within large language models or AI agents.

How to use mysheet MCP Server?

Install Java 21+ and Maven 3.6+, configure Tencent Cloud COS credentials and storage paths in application.yml, then start the server via ./mvnw spring-boot:run. The server exposes MCP tools (excel2Json, openFile, foreach, reset) that an AI agent can invoke to parse Excel files, manage sessions, and retrieve JSON data.

Key features of mysheet MCP Server

  • Converts Excel files to JSON with detailed cell type information (text, number, money, date, file, boolean)
  • Supports "row-object" parsing mode where each row becomes a JSON object
  • Automatically uploads embedded files to Tencent Cloud COS and replaces local paths with COS URLs
  • Uses Java 21 virtual threads for concurrent file uploads, boosting performance on large files
  • Provides session management (openFile, foreach, reset) for reading large Excel files in batches
  • Implements an MD5‑based cache to avoid re‑parsing identical files; cached data expires after 24 hours

Use cases of mysheet MCP Server

  • Extracting structured data from Excel spreadsheets for LLM ingestion
  • Processing Excel files that contain embedded images, documents, or other attachments stored on COS
  • Handling large Excel files by reading rows in chunks through session‑based cursors
  • Automating batch Excel‑to‑JSON conversion in AI agent workflows

FAQ from mysheet MCP Server

What Excel file formats are supported?

The server supports both .xls and .xlsx formats.

What are the runtime requirements?

Java 21 or higher (mandatory for virtual threads), Maven 3.6+, and a Tencent Cloud COS account for file storage.

How do I configure Tencent Cloud COS?

Edit src/main/resources/application.yml to set your COS secret‑id, secret‑key, region, and bucket‑name.

How does the cache work?

The server computes an MD5 hash of the uploaded Excel file and checks for a cached JSON file. If found, it returns the cached result. Cached session data is kept in memory for 24 hours and cleaned hourly.

What is the session timeout?

Sessions remain active in memory for 24 hours. The cleanup process runs every hour to remove expired sessions.

评论

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