I craft unique cereal names, stories, and ridiculously cute Cereal Baby images.

Glide-API-MCP-Server
Serveur de protocole de contexte de modèle (MCP) pour @ glideappsapi
3 years
Works with Finder
1
Github Watches
4
Github Forks
5
Github Stars
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:
{
"mcpServers": {
"glide-api": {
"command": "node",
"args": ["path/to/build/index.js"],
"env": {
"GLIDE_API_KEY": "your-api-key-here",
"GLIDE_API_VERSION": "v2" // or "v1" for v1 API
}
}
}
}
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:
use_mcp_tool({
server_name: "glide-api",
tool_name: "set_api_version",
arguments: {
version: "v2",
apiKey: "your-api-key"
}
});
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
Development
Install dependencies:
npm install
Build the server:
npm run build
For development with auto-rebuild:
npm run watch
Usage Examples
- Get app information:
use_mcp_tool({
server_name: "glide-api",
tool_name: "get_app",
arguments: {
appId: "your-app-id"
}
});
- Add a row to a table:
use_mcp_tool({
server_name: "glide-api",
tool_name: "add_table_row",
arguments: {
appId: "your-app-id",
tableId: "your-table-id",
values: {
column1: "value1",
column2: "value2"
}
}
});
相关推荐
Evaluator for marketplace product descriptions, checks for relevancy and keyword stuffing.
Confidential guide on numerology and astrology, based of GG33 Public information
Professional Flask/SQLAlchemy code guide. Follow: https://x.com/navid_re
A geek-themed horoscope generator blending Bitcoin prices, tech jargon, and astrological whimsy.
Découvrez la collection la plus complète et la plus à jour de serveurs MCP sur le marché. Ce référentiel sert de centre centralisé, offrant un vaste catalogue de serveurs MCP open-source et propriétaires, avec des fonctionnalités, des liens de documentation et des contributeurs.
Manipulation basée sur Micropython I2C de l'exposition GPIO de la série MCP, dérivée d'Adafruit_MCP230XX
Une passerelle API unifiée pour intégrer plusieurs API d'explorateur de blockchain de type étherscan avec la prise en charge du protocole de contexte modèle (MCP) pour les assistants d'IA.
Miroir dehttps: //github.com/bitrefill/bitrefill-mcp-server
Reviews

user_jY0gHXmp
As a dedicated user of the glide-api-mcp-server by knmurphy, I am thoroughly impressed with its robust performance and seamless integration capabilities. The server efficiently manages API requests, making it an essential tool for our projects. I highly recommend it to any developer looking for a reliable and efficient server solution. Great job, knmurphy!