customerthermometer-mcp
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., "@customerthermometer-mcpshow me the NPS score for last week"
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.
customerthermometer-mcp
MCP server for Customer Thermometer — an email-based CSAT/NPS survey platform. Exposes its full public REST API (survey reporting + sending) as MCP tools.
Overview
Stateless HTTP service. No credentials are ever persisted — each request supplies its own credentials 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: NPS Chatbot MCP Server
Scope
15 tools — the vendor's entire public API (single api.php endpoint,
dispatched via a getMethod query parameter): 10 read methods
(get_thermometers, get_recipient_lists, get_send_quota,
get_happiness_value, get_nps_value, get_temp_rating_value,
get_response_rate_value, get_num_responses_value, get_blast_results,
get_comments) and 5 write methods (send_email, log_response,
add_recipient_to_list, delete_response, unsubscribe_recipient).
MSPbots itself only calls 5 of the 10 read methods (BlastResults, Comments,
ResponseRateValue, NumResponsesValue, NPSValue) — this MCP covers the full
API since the vendor's entire public surface is small enough to implement
completely.
Authentication
Customer Thermometer authenticates with a static API key, sent as the
apiKey query-string parameter on every call (the vendor's "super API key"
style — no Authorization: Bearer header, which the vendor docs reserve for
scoped "sub-API keys"). MSPbots' own integration also stores the API host
(api_url) as a per-tenant field, so this server treats it as per-request
too rather than a fixed default.
HEADER 授权参数说明
Header | 类型 | 是否必填 | 默认值 | 枚举值 | 字段描述 | Example |
| string | 是 | 无 | 无 | Customer Thermometer API Key,转发为上游 |
|
| string | 是 | 无 | 无 | API 主机地址(不带协议前缀也可,自动补 |
|
Missing either header returns 401:
{
"error": "Missing credentials",
"message": "This server requires the X-CustomerThermometer-Api-Key and X-CustomerThermometer-Api-Url headers",
"required_headers": ["X-CustomerThermometer-Api-Key", "X-CustomerThermometer-Api-Url"],
"optional_headers": []
}Environment Variables
Variable | 类型 | 是否必填 | 默认值 | 说明 |
| int | 否 |
| HTTP 监听端口 |
| string | 否 |
| HTTP 监听地址 |
(No *_BASE_URL env var — the API host is per-tenant and always supplied
via the X-CustomerThermometer-Api-Url header, never a fixed default.)
MCP Endpoint
POST /mcp— MCP protocol (streamable HTTP transport)GET /health— health check, returns{"status": "ok", "service": "customerthermometer-mcp", "transport": "http"}
Tool List
Responses are not JSON — the vendor returns XML documents (list/report methods) or plain integers/strings, so tools return the raw response text as-is rather than a parsed/re-serialized object.
Tool | 功能 | 参数 | 返回格式 |
| 列出所有 Thermometer 名称和 ID | 无 | XML |
| 列出所有收件人 List 名称和 ID | 无 | XML |
| 获取剩余可发送额度 | 无 | Integer |
| 获取 Happiness Factor(%) |
| Integer |
| 获取 NPS 分数 |
| Integer |
| 获取 Temperature Rating(%) |
| Integer |
| 获取回复率(%) |
| Integer |
| 获取回复数量 |
| Integer |
| 获取详细回复结果 |
| XML |
| 获取回复评论 |
| XML |
| 发送单封 Email Thermometer 调查 |
| Integer |
| 手动登记一条回复 |
| — |
| 添加收件人到 List |
| String |
| ⚠ 删除一条回复(30 天后彻底清除) |
| Integer |
| 将邮箱加入退订名单 |
| String |
测试示例
# 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-CustomerThermometer-Api-Key: <your-api-key>" \
-H "X-CustomerThermometer-Api-Url: app.customerthermometer.com/api.php" \
-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": "customerthermometer_get_send_quota",
"arguments": {}
}
}'Live-verified (2026-07-29): customerthermometer_get_send_quota and
customerthermometer_get_nps_value were both called end-to-end through
this running server with a real API key and returned real account data
(a credit count and an NPS score respectively).
API Reference
Full public documentation: https://www.customerthermometer.com/integration/api-documentation/
Known Gaps
getResponseRateValue/getNumResponsesValuemethod-name ambiguity in the vendor's own docs: each method's parameter table names thegetMethodvalue without theValuesuffix (getResponseRate,getNumResponses), but every worked example on the same page uses the...Valuesuffixed name — and MSPbots' own configured endpoint names ("ResponseRateValue", "NumResponsesValue") match the suffixed form. This server uses the suffixed names (getResponseRateValue,getNumResponsesValue), consistent with the examples and MSPbots' usage.POST body encoding is not specified in the vendor docs for
logResponse,addRecipientToList, andunsubscribeRecipient— they only list field names/types, not a content-type. This server sends them asapplication/x-www-form-urlencoded(the traditional convention for a PHP-based endpoint like this); if the vendor actually expects JSON, these three tools would needclient.postto switch fromdata=tojson=.Only the 5 tools matching MSPbots' own usage plus
get_send_quotawere live-verified with real data; the remaining tools are structurally correct (schema validated, MCP-protocoltools/listconfirmed) but not individually smoke-tested — several (send_email,log_response, etc.) are write operations that would create/modify real survey data, so they weren't exercised against the live test account.
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
- Alicense-qualityDmaintenanceAn MCP server that provides email sending capabilities via SMTP, featuring tools for sending standard and template-based emails. It utilizes the FastMCP Streamable HTTP transport for flexible client connectivity over HTTP without requiring stdio subprocesses.Last updated5MIT
- Flicense-qualityBmaintenanceMCP server enabling NPS chatbot interactions, summaries, topic analysis, and example comments via natural language.Last updated

crewhu-mcpofficial
Alicense-qualityAmaintenanceMCP server for Crewhu — customer feedback, employee engagement, and gamification for MSPs. Enables AI assistants to manage surveys, scores, and recognition.Last updatedApache 2.0- Alicense-qualityDmaintenanceMCP server that sends outbound emails with automatic single-thread mapping in Gmail, enabling reply-style conversations within a single thread.Last updated1031MIT
Related MCP Connectors
MCP server for Meitre restaurant reservations.
An MCP server giving access to Grafana dashboards, data and more.
A paid remote MCP for hosted MCP server, built to return verdicts, receipts, usage logs, and audit-r
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/customerthermometer-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server