Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Excel
file-spreadsheet

Excel MCP Server

MCP server for Excel file manipulation

excelspreadsheetofficedata

About

## Excel MCP Server: Spreadsheet Operations The **Excel MCP Server** integrates Microsoft Excel capabilities into Google Antigravity, enabling developers to read, write, and manipulate Excel spreadsheets through AI-assisted data operations. ### Why Excel MCP? - **Full Compatibility**: Work with .xlsx, .xls, and .csv files - **Formula Support**: Read and write Excel formulas - **Formatting**: Preserve and modify cell formatting - **Charts**: Create and modify Excel charts - **Large Files**: Handle large spreadsheets efficiently ### Key Features #### 1. Reading and Writing Data ```python # Read spreadsheet data data = await excel.readSheet({ "filePath": "/path/to/workbook.xlsx", "sheet": "Sales Data", "range": "A1:Z100", "headers": True }) for row in data.rows: print(f"Product: {row.Product}, Revenue: {row.Revenue}") # Write data to spreadsheet await excel.writeSheet({ "filePath": "/path/to/workbook.xlsx", "sheet": "Summary", "startCell": "A1", "data": [ ["Month", "Revenue", "Expenses", "Profit"], ["January", 50000, 30000, "=B2-C2"], ["February", 55000, 32000, "=B3-C3"] ] }) ``` #### 2. Formatting and Charts ```python # Apply formatting await excel.formatCells({ "filePath": "/path/to/workbook.xlsx", "sheet": "Summary", "range": "A1:D1", "format": { "bold": True, "backgroundColor": "#4472C4", "fontColor": "#FFFFFF" } }) # Create chart await excel.createChart({ "filePath": "/path/to/workbook.xlsx", "sheet": "Summary", "type": "column", "dataRange": "A1:D4", "title": "Monthly Financial Summary", "position": "F2" }) # Add formula await excel.setFormula({ "filePath": "/path/to/workbook.xlsx", "sheet": "Summary", "cell": "D5", "formula": "=SUM(D2:D4)" }) ``` ### Configuration ```json { "mcpServers": { "excel": { "command": "npx", "args": ["-y", "@anthropic/mcp-excel"], "env": { "EXCEL_TEMP_DIR": "/tmp/excel-processing" } } } } ``` ### Use Cases **Report Generation**: Create formatted Excel reports from application data. **Data Import**: Read data from Excel files for processing and analysis. **Template Population**: Fill Excel templates with dynamic data. The Excel MCP Server brings powerful spreadsheet capabilities to your development workflow.

Installation

Configuration
{
  "mcpServers": {
    "excel": {
      "mcpServers": {
        "excel": {
          "args": [
            "-y",
            "excel-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 11. No Microsoft Excel installation required
  2. 22. Read and write Excel files
  3. 33. Supports formulas, charts, and formatting

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers