G

excel-mcp-server

...
Created 2/16/2025bynegokaz

Language:

Go

Stars:

79

Forks:

11

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: 4/12/2025

Publisher info

negokaz's avatar

Kazuki Negoro

15
followers
4
following
86
repos

More MCP servers built with Go

Sourcerer MCP

An MCP server for semantic code search & navigation that helps AI agents work efficiently without burning through costly tokens. Instead of reading entire files, agents can search conceptually and jump directly to the specific functions, classes, and code chunks they need.

By st3v3nmw
https://github.com/patrickdappollonio/mcp-kubernetes-ro

mcp-kubernetes-ro is a Model Context Protocol (MCP) server providing read-only access to Kubernetes clusters for AI assistants. It enables AI models to list resources, get resource details, retrieve pod logs, discover API resources, and perform base64 encoding/decoding operations - all while maintaining security through read-only access.

By patrickdappollonio
GitKraken MCP

A CLI for interacting with GitKraken APIs. Includes an MCP server via gk mcp that not only wraps GitKraken APIs, but also Jira, GitHub, GitLab, and more.

By GitKraken