Skip to main content
Glama

Excel MCP Server

MIT License
2,793
315
  • Linux
  • Apple
#!/usr/bin/env node import * as path from 'path' import * as childProcess from 'child_process' const BINARY_DISTRIBUTION_PACKAGES: any = { win32_ia32: "excel-mcp-server_windows_386_sse2", win32_x64: "excel-mcp-server_windows_amd64_v1", win32_arm64: "excel-mcp-server_windows_arm64_v8.0", darwin_x64: "excel-mcp-server_darwin_amd64_v1", darwin_arm64: "excel-mcp-server_darwin_arm64_v8.0", linux_ia32: "excel-mcp-server_linux_386_sse2", linux_x64: "excel-mcp-server_linux_amd64_v1", linux_arm64: "excel-mcp-server_linux_arm64_v8.0", } function getBinaryPath(): string { const suffix = process.platform === 'win32' ? '.exe' : ''; const pkg = BINARY_DISTRIBUTION_PACKAGES[`${process.platform}_${process.arch}`]; if (pkg) { return path.resolve(__dirname, pkg, `excel-mcp-server${suffix}`); } else { throw new Error(`Unsupported platform: ${process.platform}_${process.arch}`); } } childProcess.execFileSync(getBinaryPath(), process.argv, { stdio: 'inherit', });

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/negokaz/excel-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server