@gibeon/mcp-server
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| GIBEON_API_KEY | Yes | API key for Gibeon. Must start with 'gib_'. | |
| GIBEON_API_TIMEOUT_MS | No | Per-call timeout in ms. Defaults to 15000. | 15000 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_playersA | List the digital-signage players (screens) in the calling tenant. When to use:
When NOT to use:
What to know:
|
| get_playerA | Fetch a single player by id. When to use:
When NOT to use:
What to know:
|
| update_playerA | Patch mutable fields on a single player. When to use:
When NOT to use:
What to know:
|
| publish_playersA | Build a fresh content snapshot so one or every player picks up its current content assignment. When to use:
When NOT to use:
What to know:
|
| list_playlistsA | List the playlists in the calling tenant. When to use:
When NOT to use:
What to know:
|
| get_playlistA | Fetch a single playlist by id, optionally with its content items inline. When to use:
When NOT to use:
What to know:
|
| create_playlistA | Create a new empty playlist in the calling tenant. When to use:
When NOT to use:
What to know:
|
| update_playlistA | Patch a playlist's metadata. When to use:
When NOT to use:
What to know:
|
| delete_playlistA | Permanently delete a playlist and all its items. When to use:
When NOT to use:
What to know:
|
| add_playlist_itemA | Append a content item to a playlist. When to use:
When NOT to use:
What to know:
|
| update_playlist_itemA | Patch an existing content item. When to use:
When NOT to use:
What to know:
|
| delete_playlist_itemA | Remove an item from a playlist. When to use:
When NOT to use:
What to know:
|
| reorder_playlist_itemsA | Set the playback order of a playlist's items in one call. When to use:
When NOT to use:
What to know:
|
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 13 tools
Each tool targets a distinct resource and action (players vs playlists vs playlist items, list/get/create/update/delete/publish). Even similar operations like update_player vs publish_players are clearly differentiated by their descriptions.
All tools follow a consistent verb_noun pattern in lowercase snake_case (list_players, get_playlist, add_playlist_item, reorder_playlist_items). Plural vs singular usage is conventional and predictable.
13 tools is well-scoped for the player/playlist/playlist-item domain. Each tool covers a distinct operation, and the count is within the ideal range.
Playlist items have full CRUD plus reorder, and players cover list/get/update/publish. However, update_player can assign sequence_id or planning_id, yet there are no tools to manage sequences or planning, creating a dead end for those workflows. Asset management is also external, but that may be out of scope.