# Satismeter — how to use (mcp.ai)

Connect your Satismeter account and use 5 tools for forms and surveys straight from your AI agent. Connect with your own API key. SatisMeter is a customer feedback platform that enables businesses to collect and analyze user feedback through targeted surveys.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_satismeter?ms=1787295840000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `satismeter_embed_survey`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/satismeter`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/satismeter/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/satismeter/embed/survey` — Tool to generate a JavaScript snippet to embed a SatisMeter survey. Use after configuring your project and obtaining your write key.
  - body: { traits?: object, userId?: string, settings?: object, writeKey: string }
- `POST https://api.mcp.ai/api/satismeter/get/unsubscribed/emails` — Tool to retrieve list of unsubscribed emails for a project. Use when you need to fetch emails that have opted out of surveys.
  - body: { project_id: string }
- `POST https://api.mcp.ai/api/satismeter/list/surveys` — Tool to list surveys (campaigns) in a project. Use when you have a valid project ID and need to retrieve its surveys.
  - body: { project: string }
- `POST https://api.mcp.ai/api/satismeter/list/users` — Tool to list users in a project. Use when you have a valid project ID and need to retrieve its users. Optionally filter by a specific user ID.
  - body: { project: string, user_id?: string }
- `POST https://api.mcp.ai/api/satismeter/update/unsubscribed/emails` — Tool to update the list of unsubscribed emails for a project. Use when you need to bulk unsubscribe user emails from surveys.
  - body: { emails: string[], project_id: string }

## Example prompts
- "What can I do in Satismeter?"
- "Show me a summary of my Satismeter account"

## More
- Page: https://mcp.ai/satismeter
- Agent spec (llms.txt): https://mcp.ai/satismeter/llms.txt
- Postman collection: https://mcp.ai/satismeter/postman.json
