oitvoip-mcp-server
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DEBUG | No | Enable debug logging | false |
| NETSAPIENS_API_URL | Yes | Your NetSapiens API endpoint (usually https://api.ucaasnetwork.com) | |
| NETSAPIENS_TIMEOUT | No | API request timeout in milliseconds | 30000 |
| NETSAPIENS_API_TOKEN | Yes | Your NetSapiens API token |
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 |
|---|---|
| search_usersC | Search for users in the NetSapiens system |
| get_userC | Get detailed information about a specific user |
| get_cdr_recordsB | Retrieve call detail records (CDR) |
| get_domainsC | Get list of domains in the NetSapiens system |
| get_domainB | Get detailed information about a specific domain |
| get_user_devicesB | Get devices assigned to a specific user |
| get_phone_numbersC | Get phone numbers for a domain |
| get_phone_numberC | Get details of a specific phone number |
| get_call_queuesB | Get call queues for a domain |
| get_call_queueB | Get details of a specific call queue |
| get_call_queue_agentsB | Get agents assigned to a call queue |
| get_agentsB | Get agents for a domain |
| login_agentC | Login an agent to a call queue |
| logout_agentB | Logout an agent from a call queue |
| get_auto_attendantsC | Get auto attendants for a domain |
| get_user_answer_rulesC | Get answer rules for a user |
| get_user_answer_ruleC | Get specific answer rule for a user |
| get_user_greetingsC | Get greetings for a user |
| get_user_voicemailsC | Get voicemails for a user |
| get_music_on_holdB | Get music on hold files for a domain |
| get_billingB | Get billing information for a domain |
| get_agent_statisticsB | Get agent statistics for a domain |
| test_connectionB | Test connectivity to NetSapiens API |
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 23 tools
Most tools target distinct resources (agents, domains, users, call queues, phone numbers, etc.), but there are a few potentially confusing pairs like `get_call_queue` vs `get_call_queues` and `get_phone_number` vs `get_phone_numbers`, though descriptions clarify the singular/plural distinction.
The vast majority of tools follow the 'get_<resource>' pattern, with only three exceptions (`login_agent`, `logout_agent`, `test_connection`). This deviation is minor but prevents a perfect score.
23 tools is slightly above the typical range for a focused server, but the domain (VoIP management) has many distinct resource types, so the count is reasonable and each tool serves a clear purpose.
The tool surface is heavily read-oriented with almost all tools being getters. Only two mutation tools exist (login/logout agent). Missing CRUD operations for domains, users, phone numbers, etc., severely limits management capabilities.