Description

Provides tools to interact with Grist, a collaborative spreadsheet-database platform. Enables workspace and document management, table operations with SQL query support including JOINs and aggregations, record management with upsert capabilities, schema modifications, page layouts, and webhook configuration. Supports both Grist cloud instances and self-hosted deployments.

Installation

git clone https://github.com/gwhthompson/grist-mcp-server

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "grist": {
      "command": "node",
      "args": [
        "path/to/server.js"
      ]
    }
  }
}