Back to MCP directory
publicPublicdnsLocal runtime

mcp-excel

一个MCP服务器项目,用于提供客户端读取Excel文件的能力

article

README

🚀 MCP-excel 说明

MCP-excel 是一个 MCP 服务器模块,其核心价值在于为客户端赋予读取 Excel 文件的能力,极大地拓展了客户端的数据获取途径。

🚀 快速开始

要让 MCP 服务器正常运行,您需要将以下配置添加到 MCP 配置文件中:

{
  "mcpServers": {
    "sql_access": {
      "command": "uv",
      "args": [
        "--directory",
        "%USERPROFILE%/Documents/GitHub/mcp-excel",
        "run",
        "python",
        "main.py"
      ]
    }
  }
}

💻 使用示例

基础用法

{
  "mcpServers": {
    "sql_access": {
      "command": "uv",
      "args": [
        "--directory",
        "%USERPROFILE%/Documents/GitHub/mcp-excel",
        "run",
        "python",
        "main.py"
      ]
    }
  }
}
help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client