SatisMeter MCP
Read-only MCP server for exposing SatisMeter survey data to Claude custom connectors, enabling NPS response analysis and reading project, survey, response, and statistics.
README
SatisMeter MCP
Read-only remote MCP server for exposing SatisMeter survey data to Claude custom connectors.
It is designed for NPS response analysis, but also exposes project, survey, response, and statistics reads from the SatisMeter API. The server runs as a Vercel serverless function and implements OAuth dynamic client registration so Claude can connect to it as a remote MCP connector.
What It Does
- Lets Claude read SatisMeter project metadata.
- Lists and finds surveys, including likely NPS surveys.
- Reads paginated survey or project responses.
- Reads survey statistics.
- Supports a default project ID so Claude users do not need to include
projectIdin prompts. - Keeps the SatisMeter API key server-side in Vercel environment variables.
Deploy Your Own
This repository is optimized for Vercel. The MCP server is implemented as a Vercel serverless function in api/mcp.ts, with routing defined in vercel.json.
- Fork or clone this repository.
- Create a Vercel project from the fork.
- Add the environment variables below in Vercel.
- Deploy to production.
- Add the deployed URL as a Claude custom connector.
Environment Variables
Set these in Vercel:
| Name | Required | Description |
|---|---|---|
SATISMETER_API_KEY |
Yes | SatisMeter API key. Stored only server-side. |
OAUTH_SIGNING_SECRET |
Yes | Random secret used to sign OAuth authorization codes and access tokens. Generate with openssl rand -hex 48. |
SATISMETER_PROJECT_ID |
Recommended | Default SatisMeter project ID. Recommended so Claude can fetch NPS responses without asking for projectId. |
SATISMETER_NPS_SURVEY_ID |
Optional | Default NPS survey ID. If omitted, the MCP finds a likely NPS survey from the configured project. |
Project and survey IDs are available in SatisMeter under Settings > Integrations > API.
Claude Connector URL
Use either URL in Claude:
https://<your-vercel-domain>
https://<your-vercel-domain>/mcp
The bare deployment host routes to the MCP endpoint for Claude compatibility.
Tools
satismeter_list_surveys: Lists surveys for a project.satismeter_get_project: Reads project metadata by ID.satismeter_find_nps_surveys: Finds likely NPS surveys by type or name.satismeter_get_survey: Reads survey metadata.satismeter_get_survey_responses: Reads paginated responses from one survey.satismeter_get_nps_responses: Reads paginated responses from the configured or discovered NPS survey.satismeter_get_project_responses: Reads paginated responses across a project.satismeter_get_survey_statistics: Reads survey statistics.
SatisMeter does not expose a GET /projects endpoint, so this MCP cannot list all projects. Configure SATISMETER_PROJECT_ID or pass projectId explicitly.
Claude Team Setup
An Owner or Primary Owner can add the hosted URL in Claude:
- Open Organization settings > Connectors.
- Add > Custom > Web.
- Paste the Vercel deployment URL.
- Add the connector and complete the OAuth prompt.
Team members then enable it under Customize > Connectors.
Security Notes
- Do not put
SATISMETER_API_KEYin Claude connector settings or in the URL. - The SatisMeter API key is read from
process.env.SATISMETER_API_KEYat runtime. - OAuth tokens issued by this server only grant access to this MCP server; they are not SatisMeter API keys.
- The MCP is read-only.
API Reference
SatisMeter API docs: https://app.satismeter.com/apidoc
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.