Connect your AI tools to Glide's official MCP server and build, manage, and operate GlideOS apps, data, and workflows — from Claude, Cursor, VS Code, Gemini CLI, ChatGPT, or any MCP client.
- Endpoint:
https://mcp.glideapps.dev/mcp(Streamable HTTP) - Authentication: OAuth 2.1 — sign in with your Glide account when your client prompts you; no API keys to manage. Access requires a Glide plan that includes the MCP server feature.
- Documentation: https://www.glideapps.com/docs/os/mcp
The server exposes Glide's full MCP tool surface, including:
- Projects — create, list, and manage GlideOS projects
- Apps — publish, promote, roll back, and manage app access and domains
- Data — query and modify app databases, ingest data sources, manage backups
- Workflows — run workflows, manage schedules, webhooks, and triggers
- Files & code — read, write, and search project files; run backend code
Ask your AI tool things like:
"List my Glide projects"
"Create a new project called Inventory Tracker"
"Show me the tables in my app's database"
claude mcp add --transport http glide https://mcp.glideapps.dev/mcpGo to Settings → Connectors → Add custom connector and enter https://mcp.glideapps.dev/mcp.
Or add to ~/.cursor/mcp.json:
{
"mcpServers": {
"glide": {
"url": "https://mcp.glideapps.dev/mcp"
}
}
}code --add-mcp '{"name":"glide","type":"http","url":"https://mcp.glideapps.dev/mcp"}'This repository is also a Gemini CLI extension:
gemini extensions install https://github.com/glideapps/mcpThen restart Gemini CLI.
In Settings → Connectors, add a custom connector with the URL https://mcp.glideapps.dev/mcp (requires a ChatGPT plan with connector support).
- Glide documentation: https://www.glideapps.com/docs
- Product questions and account help: https://www.glideapps.com/support
- Bugs in the Gemini CLI extension or errors in this README: open an issue on this repository
MIT