mango-office-mcp
This server lets you interact with Mango Office cloud telephony via 8 tools: call history, user lists, making calls, stats, recordings, SMS, and prebuilt daily reports.
Call history: Fetch call records for a date range (
get_calls).User management: Get the list of Mango Office users (
get_users).Make calls: Initiate outbound callbacks from an internal number/SIP to a destination (
make_call).Call statistics: Get summary stats for calls over a period (
get_stats).Recordings: Retrieve play/download links for call recordings (
get_recording).Send SMS: Send text messages from an internal extension to a phone number (
send_sms).Ready-made reports: Get today's call history report (
skill_call_history) and today's call stats summary (skill_stats).
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mango-office-mcpПокажи звонки за последний час"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@theyahia/mango-office-mcp
MCP server for Mango Office API — calls, users, recordings, SMS, statistics. 8 tools.
Part of the Russian API MCP series (50 servers) by @theYahia.
Installation
Claude Desktop
{
"mcpServers": {
"mango-office": {
"command": "npx",
"args": ["-y", "@theyahia/mango-office-mcp"],
"env": { "MANGO_API_KEY": "your-key", "MANGO_API_SALT": "your-salt" }
}
}
}Claude Code
claude mcp add mango-office -e MANGO_API_KEY=your-key -e MANGO_API_SALT=your-salt -- npx -y @theyahia/mango-office-mcpVS Code / Cursor
{ "servers": { "mango-office": { "command": "npx", "args": ["-y", "@theyahia/mango-office-mcp"], "env": { "MANGO_API_KEY": "your-key", "MANGO_API_SALT": "your-salt" } } } }Streamable HTTP
npx @theyahia/mango-office-mcp --http
# POST /mcp, GET /health — порт 3000 (PORT=8080 для другого)Requires
MANGO_API_KEYandMANGO_API_SALT. Get them in your Mango Office personal account.
Related MCP server: ringcentral-mcp
Authentication
All requests are signed with HMAC-SHA256: sign = HMAC(apiKey + json + apiSalt).
Base URL: https://app.mango-office.ru/vpbx/.
Tools (6)
Tool | Description | API endpoint |
| Call history for a period |
|
| List of users |
|
| Initiate an outgoing call |
|
| Summary call statistics |
|
| Link to call recording |
|
| Send SMS |
|
Skills (2)
Tool | Description |
| Today's call history — ready-made report |
| Today's call statistics — summary |
Examples
Покажи звонки за последний час
Список пользователей Mango Office
Позвони с 101 на +79001234567
Статистика звонков за сегодня
Скачай запись разговора rec_123
Отправь SMS с 101 на +79001234567 "Перезвоните"Mango Office
Mango Office — cloud telephony for business. Referral program: up to 25% lifetime from payments of referred clients.
License
MIT
Available Tools
8 toolsget_callsC
Получить историю звонков Mango Office за период.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Количество записей | |
| date_to | Yes | Конец периода (UNIX timestamp или ISO 8601) | |
| date_from | Yes | Начало периода (UNIX timestamp или ISO 8601) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. The description only says 'get call history for a period,' with no information about pagination, default limits, sorting, rate limits, or what happens with large datasets. It is a sparse definition that fails to inform the agent of any behavioral traits beyond the obvious read operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with no wasted words. It is appropriately short, though it sacrifices detail for brevity. The structure is acceptable, but given the lack of behavioral info, it could be improved without being verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no output schema and no annotations, the description should compensate by explaining what the agent will get back, any constraints on the period, or how to handle edge cases. The current description only covers the core action, leaving out essential context like return structure, default behavior, and when to prefer alternatives. This makes it incomplete for effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, so all three parameters have descriptions in the schema. The tool description itself adds no additional meaning beyond what the schema provides (e.g., date formats are already specified in the schema). This matches the baseline of 3 for well-documented schemas.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear verb ('get') and resource ('call history') plus a period constraint, so an agent knows the basic action. However, it does not distinguish itself from the sibling tool 'skill_call_history', which likely serves a similar purpose. The purpose is clear but not differentiated from alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given on when to use this tool versus alternatives like 'skill_call_history' or 'get_stats'. There is no mention of prerequisites, limitations, or exclusions. The agent is left to infer usage from the name and schema alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_recordingB
Получить ссылку на запись разговора.
| Name | Required | Description | Default |
|---|---|---|---|
| action | No | Действие: play (ссылка) или download | play |
| recording_id | Yes | ID записи разговора |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are absent, so the description must carry the behavioral burden. It implies a read-only operation ('get a link') but does not disclose any side effects, authentication requirements, or response format. It also doesn't clarify how the 'action' parameter changes behavior beyond the schema enum.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence precisely captures the tool's purpose with no filler. It is minimal but effective.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with two well-documented parameters, the description is minimally adequate. However, it does not explicitly state the output type (a URL string vs. a JSON object) or address error scenarios. The lack of an output schema makes this more critical, so a 3 is given.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema documents both parameters with descriptions and enum values, achieving 100% coverage. The description adds no additional meaning or context to the parameters, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves a link to a call recording, specifying the verb 'get' and resource 'recording'. It is distinguishable from siblings like get_calls (list of calls) and get_users (list of users) by its focus on a specific recording. However, it doesn't explicitly mention it operates by recording ID, though that is implied by the required parameter.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives, nor when to choose the 'play' vs 'download' action. Sibling tools like get_calls exist, but the description doesn't mention any conditions that would select this tool over them.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_statsC
Получить сводную статистику звонков за период.
| Name | Required | Description | Default |
|---|---|---|---|
| date_to | Yes | Конец периода (UNIX timestamp или ISO 8601) | |
| date_from | Yes | Начало периода (UNIX timestamp или ISO 8601) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only says 'get summary statistics' but does not disclose what metrics are returned (e.g., call counts, durations, success rates), whether aggregation is across all users or filtered, or any permissions needed. This is a significant gap for a stats tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with no unnecessary words, and the core purpose is front-loaded. It is efficient and doesn't waste tokens, though it is minimal in content. It does not repeat schema information, so it earns a solid score.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has no output schema and no annotations, so the description must explain the return value (what stats are included) and any operational context (e.g., date range format, limits). It fails to do so, leaving an agent with insufficient information to know what to expect or how to handle results. This is inadequate for a data-retrieval tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and both parameters (date_from, date_to) are already described with type and format hints. The description adds no additional meaning beyond the period concept, which is already implied by the parameters. Baseline 3 is appropriate since the schema carries the parameter documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the verb 'Получить' (Get) and the resource 'сводную статистику звонков' (summary statistics of calls) with a time period, making the core purpose clear. It is not a tautology and provides a distinct resource from siblings like get_calls (listing calls) and skill_stats (skill-specific statistics), though it does not explicitly distinguish them.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this tool versus alternatives. The description only states what it does, with no context about typical use cases, exclusions, or references to sibling tools like get_calls or skill_stats.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_usersB
Получить список пользователей Mango Office.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Количество пользователей |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It only states that the tool retrieves a user list, but does not mention any constraints, side effects, performance characteristics, or response format. For a read operation this is minimal, but it lacks transparency about anything beyond the basic action.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence with no redundant words. It is front-loaded with the action and resource, making it immediately scannable. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list retrieval tool with one parameter and no output schema, the description is minimally adequate. However, it omits details like the structure of the returned users, any permissions needed, or whether pagination is handled via the limit parameter. Given the absence of annotations, more context would improve completeness, but the simplicity of the tool makes this a borderline 3.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% (the limit parameter is described in the schema as 'Количество пользователей'). The description adds no extra meaning beyond what the schema already provides. Baseline of 3 is appropriate since the schema fully documents the parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear verb ('Получить' = get) and a specific resource ('список пользователей Mango Office' = list of Mango Office users). It is unambiguous and distinct from the sibling tools (get_calls, make_call, etc.), which operate on calls and SMS. The purpose is immediately obvious.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives, or any usage context such as pagination, authentication requirements, or typical scenarios. It simply states what it does, leaving the agent to infer when it is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
make_callB
Инициировать исходящий звонок (callback) через Mango Office.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Номер назначения (E.164 или внутренний) | |
| from | Yes | Внутренний номер или SIP-аккаунт инициатора | |
| line | No | Линия (CallerID) для исходящего звонка |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavioral traits. It only states the action without mentioning side effects, success/failure behavior, asynchronicity, or any constraints. For a state-changing tool, this is a minimal disclosure and leaves the agent uncertain about the operation's full impact.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, compact sentence with no filler. It effectively communicates the core purpose without verbosity, making it easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool initiates a potentially blocking or asynchronous action, the description lacks crucial context like whether it returns a call ID, how errors are reported, or if there are limitations on simultaneity. The agent has only the schema to work with, which isn't enough for a complete understanding of the call lifecycle.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers 100% of parameters with descriptions, so the description adds little semantic value. It does imply the call is a 'callback' but doesn't clarify parameters beyond the schema, which already explains each field well. Baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'инициировать' (initiate) and the resource 'исходящий звонок' (outgoing call) via Mango Office. It distinguishes from sibling tools like get_calls, which are read-oriented, though it doesn't explicitly call out the difference. The action is unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use versus alternatives is provided, but since there is no sibling tool for making calls, the intended use is fairly obvious. However, prerequisites like required permissions or call context are not mentioned, leaving some ambiguity for an agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
send_smsC
Отправить SMS через Mango Office.
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Текст сообщения | |
| to_number | Yes | Номер получателя | |
| from_extension | Yes | Внутренний номер отправителя |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of disclosing behavior. It only states that SMS is sent, but does not mention any side effects, required permissions, rate limits, or what happens on failure. It is a mutating operation (send) but gives no additional behavioral context beyond the literal action.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very short, which is concise, but it essentially restates the tool name ('Send SMS') without adding value. It is not verbose, yet it does not earn its place because it provides almost no information beyond the name. It is appropriately sized but under-specified.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given there is no output schema, the description should at least hint at the return value or success/failure indication, but it does not. It also lacks context about using Mango Office, any prerequisites, or how this fits into the broader set of sibling tools. For a simple send operation, it misses key contextual details that an agent would need.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema covers 100% of parameters with descriptions for each, so the baseline is 3. The description adds no additional semantic meaning beyond what the schema already provides. The parameter names and descriptions are sufficient, so the description does not need to compensate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Send' and the resource 'SMS via Mango Office', making the tool's purpose understandable. However, it does not differentiate it from sibling tools like make_call, which could be a similar operation. It's a clear but not fully distinguishing description.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this tool versus alternatives. No mention of prerequisites, limitations, or scenarios where another tool (e.g., make_call) would be more appropriate. The description provides no context for the agent to choose this tool over others.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
skill_call_historyB
История звонков за сегодня — готовый отчёт.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. The phrase 'ready report' hints that the tool returns an aggregated, pre-formatted output rather than raw data, but it does not mention side effects, permissions, or what the report contains. This is minimal disclosure for a tool with no annotation support.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence, front-loaded with the core purpose. There is no wasted text, and it is appropriately brief for a parameterless tool. It could arguably be more descriptive, but it remains efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple parameterless tool, the description provides the essential purpose and scope. However, it does not explain what 'ready report' means in terms of output structure, and it does not clarify how this tool differs from get_calls or get_stats. Given the sibling context, an agent might not know which tool to use without further investigation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and the schema is an empty object, so there is nothing for the description to explain. Following the baseline rule for 0 parameters, the description appropriately does not need to elaborate on parameter semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states 'Call history for today — ready report.' This clearly indicates the tool returns a pre-aggregated report of calls for the current day. It is specific about the resource (call history) and time scope (today), and avoids being a tautology. However, it does not explicitly differentiate from sibling tools like get_calls, which also deals with calls, so it loses a point.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this tool versus alternatives like get_calls or get_stats. The description does not mention any conditions, exclusions, or alternative routing. The only implied usage is for today's call history, but it does not explain why the agent should choose this over a more flexible tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
skill_statsB
Статистика звонков за сегодня — сводка.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It only says 'summary' without detailing what the output includes, whether it requires authentication, or any side effects. This is minimal disclosure for a tool that likely returns data.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise — a single short sentence. It is front-loaded and avoids filler. However, it might be too terse, missing useful elaboration on what constitutes the summary.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the low complexity (no params, no output schema), the description is still incomplete. It does not clarify what the summary contains, how it relates to other tools like get_stats, or any practical usage details. An agent would lack sufficient context to choose this tool confidently.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline score is 4. The description does not need to explain parameter semantics since there are none, and the schema is empty.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: call statistics for today as a summary. It names the resource (calls) and scope (today). However, it does not differentiate from sibling tools like 'get_stats' which might also provide statistics; the precise difference is left ambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives (e.g., get_stats, get_calls). There is no mention of context, prerequisites, or exclusions. An agent would have to infer the intended use case from the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
8 tool updates
v1.1.0- First observed
get_calls - First observed
get_recording - First observed
get_stats - First observed
get_users - First observed
make_call - First observed
send_sms - First observed
skill_call_history - First observed
skill_stats
TDQS
Scored across 8 tools
There is clear overlap between get_calls and skill_call_history (both provide call logs, with the latter being today-only), and similarly get_stats vs skill_stats. While descriptions clarify the difference, agents could easily misselect when they want period-based vs today's data. Other tools like make_call, send_sms, get_users, get_recording are distinct.
Naming is inconsistent: most tools use verb_noun (get_calls, make_call, send_sms), but two use the prefix 'skill_' (skill_call_history, skill_stats) which breaks the pattern. The 'skill_' prefix is unusual and suggests a different convention without clear rationale, making it harder to predict tool names.
With 8 tools, the count is appropriate for a telephony server. However, the two redundant pairs (get_calls/skill_call_history, get_stats/skill_stats) could be consolidated, suggesting the surface is slightly padded but still reasonable.
The tools cover core telephony operations: retrieving calls, users, statistics, recordings, initiating calls, and sending SMS. Minor gaps exist (e.g., no call status updates, no user management beyond listing), but the main workflows are supported and no dead ends are evident.
Maintenance
Related MCP Connectors
Read calls, contacts, users, teams and numbers; tag calls and create or update contacts.
Manage CallKaro voice agents, phone numbers, call queues, and place single or batch AI calls.
Create voice-agent scenarios, pull session analytics, place SIP calls, schedule meeting bots.
Manage Voice Logica agents, calls, phones, workflows, messaging, and integrations.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceEnables integration with Planfix CRM and task management system, allowing lead management, contact/company management, task creation/search/commenting, and report generation via the Planfix REST API v2.0.65 npm11MIT
- AlicenseAqualityCmaintenanceEnables interaction with RingCentral phone system data, including account info, extensions, presence, call queues, contacts, and call logs/recordings, through MCP tools.13Apache 2.0
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to manage Rostelecom Virtual PBX telephony, including contacts, subscribers, call groups, call history, call recordings, numbers and routing, balance, and transparent proxy to any of ~240 endpoints.MIT
- AlicenseBqualityFmaintenanceEnables sending SMS, making calls, retrieving call recordings, managing phone numbers, and sending Viber messages through the MTS Exolve API.853 npmMIT