Gridly MCP Server

Gridly MCP Server

Local serverstdio

What is the Gridly MCP server?

Gridly MCP Server. The gridly mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 7 defined tools rather than through you.

What it actually does

  1. Install dependencies npm install 2. Build the server npm run build. Notice the index.js file in the dist folder. Please copy its absolute path and paste it into Step 4 under args 3. Open Claude Desktop app > Settings > Developer > Edit Config 4. Edit claude_desktop_config.json with the following config: json { "mcpServers": { "gridly-server": { "command": "node", "args": ["path/to/dist/folder/index.js"], "env": { "GRIDLY_API_KEY": "your_api_key_here" } } } } ## Available Tools #### Project - list_projects: List grids of a database - retrieve_project: Retrieve a project #### Database -

Its toolset

Everything the assistant can do here goes through one of these:

  • Project — The Project tool exposed by this server
  • Database — The Database tool exposed by this server
  • Grid — The Grid tool exposed by this server
  • View — The View tool exposed by this server
  • Column — The Column tool exposed by this server
  • Dependency — The Dependency tool exposed by this server
  • Record — The Record tool exposed by this server

Configuration

You will need one environment variable: GRIDLY_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  1. Install Claude Desktop or any MCP Client that supports an MCP Server 2. Obtain Gridly API Key

Adding it to your client

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

When to reach for it

Plenty of database access servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Gridly's toolset — Project, Database, Grid and 4 more — is a fair guide to whether it matches your workflow. It is maintained by sangcnguyen; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the gridly mcp server does with a few real requests.

Available tools

ToolWhat it does
ProjectThe Project tool exposed by this server.
DatabaseThe Database tool exposed by this server.
GridThe Grid tool exposed by this server.
ViewThe View tool exposed by this server.
ColumnThe Column tool exposed by this server.
DependencyThe Dependency tool exposed by this server.
RecordThe Record tool exposed by this server.

How to install the Gridly MCP server

{
  "mcpServers": {
    "gridly-server": {
      "command": "npx",
      "args": ["-y", "gridly-mcp-server"],
      "env": {
        "GRIDLY_API_KEY": "your_api_key_here"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  1. Install Claude Desktop or any MCP Client that supports an MCP Server 2. Obtain Gridly API Key
VariableDescriptionRequired
GRIDLY_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Gridly to Project.
  • Use Gridly to Database.
  • Use Gridly to Grid.

Frequently asked questions

It connects Gridly to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (Project, Database, Grid, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Gridly directly.