Glide API MCP Server
Glide API MCP サーバー
Glide API (v1 および v2) と対話するためのモデル コンテキスト プロトコル サーバー。
特徴
Glide API v1 と v2 の両方をサポート
環境変数による安全な API キー処理
型安全なTypeScript実装
包括的なエラー処理
Related MCP server: Placid MCP Server
利用可能なツール
set_api_version: APIバージョンと認証を設定するget_app: アプリ情報を取得するget_tables: アプリテーブルを一覧表示するget_table_rows: テーブルデータを取得するadd_table_row: 新しい行を追加するupdate_table_row: 既存の行を更新する
安全なセットアップ
1. 環境変数
サーバーは、MCP設定ファイル内の環境変数を通じて安全な設定をサポートしています。API認証情報をMCP設定ファイルに追加してください。
{
"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
}
}
}
}このアプローチでは、次の方法で API キーを安全に維持できます。
コードではなく設定ファイルに保存する
バージョン管理から外す
コードを変更せずに簡単に更新できるようにする
2. ランタイム構成
サーバーを構成するには環境変数を使用することをお勧めしますが、 set_api_versionツールを使用して実行時に API バージョンとキーを設定または上書きすることもできます。
use_mcp_tool({
server_name: "glide-api",
tool_name: "set_api_version",
arguments: {
version: "v2",
apiKey: "your-api-key"
}
});注: ランタイム構成は、現在のセッションのすべての環境変数を上書きします。
3. セキュリティのベストプラクティス
APIキーをバージョン管理にコミットしない
MCP設定ファイルで環境変数を使用する
APIキーを定期的にローテーションする
設定ファイルに適切なファイル権限を設定する
発達
依存関係をインストールします:
npm installサーバーを構築します。
npm run build自動リビルドを使用した開発の場合:
npm run watch使用例
アプリ情報を取得する:
use_mcp_tool({
server_name: "glide-api",
tool_name: "get_app",
arguments: {
appId: "your-app-id"
}
});テーブルに行を追加します。
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"
}
}
});Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables type-safe, bidirectional communication with Model Context Protocol services, allowing centralized management of model contexts over HTTP.208MIT
- AlicenseBqualityDmaintenanceA server for integrating with Placid.app's API, enabling listing templates and generating creatives using the Model Context Protocol with secure API token management.33314MIT
- AlicenseNot gradedqualityFmaintenanceProvides a Model Context Protocol interface for accessing Linear's issue tracking system, enabling users to query and search issues with TypeScript type safety and robust error handling.51930MIT
- AlicenseNot gradedqualityBmaintenanceEnables interaction with the Audius music platform API, supporting user, track, and playlist operations through the Model Context Protocol.275MIT
Related MCP Connectors
Airtable MCP Pack — wraps the Airtable REST API v0
A Model Context Protocol server for Wix AI tools
Generate a typed SDK, CLI, and MCP server from any OpenAPI or GraphQL spec, and keep them current.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/knmurphy/glide-api-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server