nextiva-mcp
The MCP server references the public Thrio API documentation hosted on Postman, but this is only mentioned as a reference and not the target of the integration.
Click on "Install 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., "@nextiva-mcplist all users"
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.
nextiva-mcp
MCP server for Nextiva (contact center platform, built on the acquired
Thrio product — API host is login.thrio.com / *.thrio.io). Exposes
the Thrio data and analytics API's users, campaigns, contacts, queues, and
work item history as MCP tools.
Naming note: MSPbots' own integration is registered as "Nextiva" (
subjectCode=NEXTIVA); the underlying API and all documentation reference "Thrio", the contact-center product Nextiva acquired. This MCP covers exactly the 5 methods MSPbots itself has configured.
Overview
Stateless HTTP service. No credentials are ever persisted — each request supplies its own username/password via headers, used only for the lifetime of that single request.
Supports concurrent requests; per-request credential isolation is done via Python
contextvars, not a global/shared client instance.Entry points:
POST /mcp(MCP protocol) andGET /health(health check).Default port:
8080(configurable viaMCP_HTTP_PORT).
Related MCP server: five9-mcp
Authentication
Thrio's auth call returns both a token and the actual per-tenant API host to use — Thrio is deployed across multiple regional clusters, so there is no single fixed data-plane hostname:
GET https://login.thrio.com/provider/token-with-authoritieswith HTTP Basic Auth (username:password) →{"location": "https://<tenant-cluster>.thrio.io", "token": "..."}.Every real data/analytics call then goes to
{location}(notlogin.thrio.com) with the token sent as-is in anAuthorizationheader — noBearerprefix.
Since there is no session to preserve, this server re-authenticates fresh on every single tool call — nothing is cached or persisted across MCP requests.
HEADER 授权参数说明
Header | 类型 | 是否必填 | 默认值 | 枚举值 | 字段描述 | Example |
| string | 是 | 无 | 无 | Thrio/Nextiva 账号用户名 |
|
| string | 是 | 无 | 无 | 对应密码 |
|
Missing either header returns 401:
{
"error": "Missing credentials",
"message": "This server requires the X-Nextiva-Username and X-Nextiva-Password headers",
"required_headers": ["X-Nextiva-Username", "X-Nextiva-Password"],
"optional_headers": []
}An invalid username/password surfaces as a tool-level error during the internal login step, not an HTTP-level error from this server.
Environment Variables
Variable | 类型 | 是否必填 | 默认值 | 说明 |
| int | 否 |
| HTTP 监听端口 |
| string | 否 |
| HTTP 监听地址 |
| string | 否 |
| 登录换 token/location 的固定入口地址 |
MCP Endpoint
POST /mcp— MCP protocol (streamable HTTP transport)GET /health— health check, returns{"status": "ok"}(pure local probe, does not call the Nextiva/Thrio API)
Tool List
All 5 tools are read-only (readOnlyHint=True, idempotentHint=True); there are no write/delete tools.
Tool | 功能 | 参数 |
| 列出账号下所有用户(坐席/技术员) |
|
| 列出呼叫营销活动(campaign) |
|
| 列出联系人(客户/线索) |
|
| 列出呼叫/聊天/邮件队列 |
|
| 获取通话/聊天/短信/邮件工作项的历史活动及汇总统计 |
|
Per-parameter documentation lives on each tool's parameter schema (visible via tools/list), not in this table — this table is a quick-reference only and parameter names here are kept in sync with the code.
Successful responses are the vendor's JSON, compactly serialized (no
pretty-printing, ensure_ascii=False) and capped at ~20,000 characters —
an oversized list response is truncated with truncated/original_count
markers rather than returned in full. There is no vendor-documented
limit/page-size parameter for these endpoints (pagination is a start
offset only, see Known Gaps below), so there is nothing to clamp beyond
this automatic character cap.
Errors are returned as a JSON error envelope (not an exception/HTTP error), e.g.:
{"error": {"code": "upstream_error", "message": "...", "retryable": true}}code is one of not_configured / unauthorized / not_found /
invalid_argument / rate_limited / upstream_error, mapped from the
Thrio API's HTTP status code (see error_envelope/NextivaError.to_envelope
in api_client.py). Outbound calls use a 5s connect / 30s read timeout,
and retry up to 3 times with capped exponential backoff on 429/5xx
responses (respecting Retry-After).
测试示例
# Health check
curl -s http://localhost:8080/health
# Call a tool via the MCP protocol (streamable HTTP) — requires an
# initialize handshake first per the MCP spec; abbreviated example below
# shows the tool-call request body only:
curl -s -X POST http://localhost:8080/mcp \
-H "X-Nextiva-Username: admin@example.com" \
-H "X-Nextiva-Password: <your-password>" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "mcp-session-id: <session-id-from-initialize>" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "nextiva_get_users",
"arguments": {}
}
}'Live-verified (2026-07-30) against a real Nextiva/Thrio tenant, all 5
tools called end-to-end through this running server: nextiva_get_users
returned 101 real users; nextiva_get_campaigns returned 9 real campaigns
(e.g. "Nextiva - Transfers"); nextiva_get_contacts returned 99 real
contacts; nextiva_get_queues returned 18 real queues; and
nextiva_get_workitems_history returned real summary totals (e.g.
297 inbound, 195 outbound, 500 contacts in the last 7 days) — all with
the login step resolving the tenant's real cluster host dynamically
(https://mancity.thrio.io).
API Reference
Public, no login required: https://api.thrio.com/ (Postman-generated documentation covering Authentication, Objects/Data API, Analytics, and more)
Known Gaps
Scope is exactly MSPbots' 5 configured endpoints, not the vendor's full API surface — Thrio's API also covers Workitem actions, List Management, Dashboards, Recordings, Contact Consent, State DID, Chat, CRM, Client, Number Verification, WFM, TEAMS, Callbacks, and more (per the public docs' own navigation); those are out of scope here.
Pagination is a
startoffset, confirmed empirically (passingstart=1shifted the result window by one and updated the response'spreviousfield accordingly) — the vendor's public docs describe this less explicitly than the request/response shape actually demonstrates, so this was verified against the live API rather than assumed from the docs alone.The
session/loginstep described in the vendor's docs (POST {location}/users/api/login) is NOT used by this server — it appeared necessary only for creating a full interactive agent session (e.g. for telephony/ACD state), not for the read-only data/analytics endpoints MSPbots uses, which worked correctly with just the Authentication token. Confirmed by successfully calling all 5 endpoints without it.
This server cannot be installed
Maintenance
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
- AlicenseBqualityDmaintenanceMCP server for managing Krystal Voice Caller tenants, including tenant config, DNC, call history, reception captures, digest send-now, Script Author draft chat, contact upload, outbound captures, and test-call tools.121MIT
- AlicenseNot gradedqualityBmaintenanceMCP server that connects AI assistants to Five9 contact center, allowing management of campaigns, agents, lists, and statistics via natural language commands.6MIT
- FlicenseNot gradedqualityCmaintenanceMCP server for Oitvoip (NetSapiens) that exposes domain, reseller, device, subscriber, and CDR tools via the ns-api.
Related MCP Connectors
Official MCP server for OmniDimension. Drive voice agents, dispatch calls, and run bulk campaigns.
Official EZTexting MCP server: SMS/MMS messaging, contacts, workflows, reports.
MCP server for Vonage API documentation, code snippets, tutorials, and troubleshooting.
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/MSPbotsAI/nextiva-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server