PluginBench
MCP Server
Maintained

io.github.dsbissett/excel-webview2-mcp MCP Server

io.github.dsbissett/excel-webview2-mcp

What is the io.github.dsbissett/excel-webview2-mcp MCP server?

MCP server for Excel add-ins via WebView2 CDP

How to install io.github.dsbissett/excel-webview2-mcp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "excel-webview2-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@dsbissett/excel-webview2-mcp"
      ]
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "excel-webview2-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@dsbissett/excel-webview2-mcp"
      ]
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "excel-webview2-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@dsbissett/excel-webview2-mcp"
      ]
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "excel-webview2-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@dsbissett/excel-webview2-mcp"
      ]
    }
  }
}
Claude Code
claude mcp add excel-webview2-mcp -- npx -y @dsbissett/excel-webview2-mcp

Related MCP servers

MCP server for Office add-ins via WebView2/CDP. Provides excel.*, page.*, and addin.* tools.

2
Go
View repository →