G

excel-mcp-server

...
Created 2/16/2025bynegokaz

Language:

Go

Stars:

3

Forks:

0

Excel MCP Server

NPM Version smithery badge

A Model Context Protocol (MCP) server that reads and writes spreadsheet data to MS Excel file.

Features

  • Read text values from MS Excel file
  • Write text values to MS Excel file

Requirements

  • Node.js 20.x or later

Supported file formats

  • xlsx (Excel book)
  • xlsm (Excel macro-enabled book)
  • xltx (Excel template)
  • xltm (Excel macro-enabled template)

Installation

Installing via NPM

excel-mcp-server is automatically installed by adding the following configuration to the MCP servers configuration.

For Windows:

{
  "mcpServers": {
    "excel": {
        "command": "cmd",
        "args": ["/c", "npx", "--yes", "@negokaz/excel-mcp-server"],
    }
}

For other platforms:

{
  "mcpServers": {
    "excel": {
        "command": "npx",
        "args": ["--yes", "@negokaz/excel-mcp-server"],
    }
}

Installing via Smithery

To install Excel MCP Server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @negokaz/excel-mcp-server --client claude

License

Copyright (c) 2025 Kazuki Negoro

excel-mcp-server is released under the MIT License

Last updated: 3/1/2025

Publisher info

negokaz's avatar

Kazuki Negoro

15
followers
4
following
86
repos

More MCP servers built with Go

mcp-server

learn to make some mcp servers

By yiGmMk1
linear-mcp-go

linear MCP server based on mcp-go

By geropl1
gomcptest

A proof-of-concept demonstrating a custom-built host implementing an OpenAI-compatible API with Google Gemini, function calling, and interaction with a dummy MCP server.

By owulveryck2