MCP.so
Sign In

Glide MCP Server

@mows21

About Glide MCP Server

Model Context Protocol (MCP) server for Glide Apps API v2 - enables AI assistants to interact with Glide Apps

Basic information

Category

Other

Runtime

python

Transports

stdio

Publisher

mows21

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "glide-mcp-server-v2": {
      "command": "docker",
      "args": [
        "build",
        "-t",
        "glide-mcp-server",
        "."
      ]
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is Glide MCP Server?

The Glide MCP Server is a Model Context Protocol (MCP) server that enables AI assistants to interact with Glide Apps through a standard interface. It provides comprehensive access to Glide’s data management capabilities, supporting both the standard Glide Tables API and the Glide Big Tables API v2.

How to use Glide MCP Server?

Clone the repository and run the one-click setup script (./setup.sh), or configure manually via Docker and a .env file with your Glide API key. Set USE_BIG_TABLES=true in .env to use the Big Tables API, and HTTP_ADAPTER=true to enable HTTP endpoints. The server can be integrated with Claude Desktop, RooCode, and Windsurf.

Key features of Glide MCP Server

  • Supports Standard Glide Tables API and Glide Big Tables API v2
  • Handles datasets up to 10 million rows (Big Tables)
  • Stashing for large data uploads
  • Pagination for large result sets
  • Multiple deployment options: Docker, local, Claude Desktop, RooCode, Windsurf
  • HTTP adapter for services requiring HTTP endpoints

Use cases of Glide MCP Server

  • Manage Glide apps, tables, and rows via AI assistant conversations
  • Perform bulk data uploads using stash operations
  • Query large datasets with SQL (Big Tables only)
  • Integrate with AI assistants like Claude Desktop, RooCode, and Windsurf
  • Overwrite entire tables from stashed data

FAQ from Glide MCP Server

What is required to use Glide MCP Server?

You need a Glide API key set in the .env file. Optionally, you can configure USE_BIG_TABLES and HTTP_ADAPTER.

How do I enable the Big Tables API?

Set USE_BIG_TABLES=true in your .env file or use the --big-tables flag when running the unified server.

What is the difference between Standard Glide Tables and Big Tables?

Standard tables support up to 25,000 rows; Big Tables support up to 10 million rows and include stashing, pagination, SQL query support, and lower update usage costs.

How can I deploy Glide MCP Server with Docker?

Build the image with docker build -t glide-mcp-server . and run with docker run -it --rm --env-file .env glide-mcp-server, or use the provided docker-compose.yml.

What endpoints does the HTTP adapter expose?

The HTTP adapter exposes POST /mcp for MCP requests and GET /health for health checks.

Comments

More Other MCP servers