sipgate-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SIPGATE_TOKEN | Yes | Your sipgate Personal Access Token. Required for authentication. | |
| SIPGATE_TOKEN_ID | Yes | Your sipgate Personal Access Token ID. Required for authentication. | |
| SIPGATE_MCP_READONLY | No | Set to '1' to register only the seven read tools. Write tools are absent from tools/list. | 0 |
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| account_infoA | Return sipgate account data and the authenticated user's identity. |
| list_usersA | List all users in the sipgate account, including IDs used by other tools. |
| list_numbersA | List sipgate phone numbers and their current endpoint assignments. |
| list_devicesA | List phones and devices with owner, active routing, DND, and online/register status. Without user_id, all users are queried. |
| get_routingA | Return number-to-endpoint routing plus each user's phonelines, assigned numbers, and active or timeout forwardings. |
| call_historyA | List paginated call history with optional direction, time-range, number, and connection filters. |
| get_settingsA | Return relevant user reachability settings, device availability/DND state, and phoneline voicemail activation and timeout settings. |
| set_number_routingA | CHANGES THE SIPGATE ACCOUNT: route a phone number to a sipgate endpoint ID (for example a phoneline). Reads and returns the number's before/after state. |
| set_forwardingA | CHANGES THE SIPGATE ACCOUNT: replace all forwardings for a phoneline, including timeout routing. Pass an empty forwardings array to delete all forwardings. Reads and returns before/after state. |
| set_dndA | CHANGES THE SIPGATE ACCOUNT: enable or disable Do Not Disturb for one device. Reads and returns the device's before/after state. |
| send_smsA | CHANGES THE SIPGATE ACCOUNT AND MAY INCUR CHARGES: send an SMS after verifying an SMS-capable extension. Reads and returns the relevant before/after history snapshot; history can update asynchronously. |
| initiate_callA | CHANGES THE SIPGATE ACCOUNT AND MAY INCUR CHARGES: start a Click2Dial call. Reads established calls before and after and returns the new session; ringing calls may not appear immediately. |
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 12 tools
Several read tools overlap heavily—list_numbers and get_routing both expose number-to-endpoint routing, list_devices and get_settings both report DND/availability, and get_routing/set_forwarding both touch forwardings. The descriptions do add enough qualifiers to disambiguate primary purposes, but an agent may still struggle to choose among the state-reading tools.
The set uses a consistent lowercase snake_case style and mostly verb_noun names, but account_info and call_history break the verb pattern and verbs are split among list/get/set/send/initiate. This is readable but not fully predictable.
12 tools is squarely in the well-scoped range for a telephony/account-management MCP; each tool covers a meaningful operation or resource without bloat. No tool feels superfluous.
The surface covers the core sipgate workflow: account/user/device/number reads, routing/DND/forwarding writes, plus call history, SMS, and Click2Dial. Missing update operations for settings/users/numbers and outbound call control are minor gaps that agents can work around, so not a full 5.