Bridges Glide's API with MCP to enable automated management and data operations for Glide applications.
Created byApr 23, 2025
Glide API MCP Server
A Model Context Protocol server for interacting with the Glide API (v1 & v2).
Features
Support for both Glide API v1 and v2
Secure API key handling through environment variables
Type-safe TypeScript implementation
Comprehensive error handling
Available Tools
`set_api_version`: Configure API version and authentication
`get_app`: Get app information
`get_tables`: List app tables
`get_table_rows`: Get table data
`add_table_row`: Add new row
`update_table_row`: Update existing row
Secure Setup
1. Environment Variables
The server supports secure configuration through environment variables in the MCP settings file. Add your API credentials to the MCP settings file:
This approach keeps your API key secure by:
Storing it in a configuration file rather than in code
Keeping it out of version control
Making it easy to update without modifying code
2. Runtime Configuration
While environment variables are the recommended way to configure the server, you can also set or override the API version and key at runtime using the `set_api_version` tool:
Note: The runtime configuration will override any environment variables for the current session.
3. Security Best Practices
Never commit API keys to version control
Use environment variables in the MCP settings file
Regularly rotate your API keys
Set appropriate file permissions on the settings file