# Mopinion — how to use (mcp.ai)

Connect your Mopinion account and use 11 tools for analytics straight from your AI agent. Connect with your own API key. Mopinion captures user feedback across websites and apps, providing insights, analytics, and reporting to optimize user experiences and drive conversions.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_mopinion?ms=1787293440000`
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. `mopinion_get_account`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/mopinion`
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/mopinion/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/mopinion/get/account` — Tool to retrieve the current authenticated account information. Use to verify authentication and get account details.
- `POST https://api.mcp.ai/api/mopinion/get/dataset/by/id` — Retrieve complete metadata for a specific Mopinion dataset (feedback form) by its ID. Returns dataset properties including name, associated report ID, data source type, and description. Use this actio
  - body: { dataset_id: integer|string }
- `POST https://api.mcp.ai/api/mopinion/get/dataset/feedback` — Retrieve feedback items (survey responses) for a specific dataset/form with optional pagination and filtering. Use this action to fetch multiple feedback entries from a dataset. Each feedback item con
  - body: { page?: integer, limit?: integer, filters?: object, dataset_id: integer }
- `POST https://api.mcp.ai/api/mopinion/get/dataset/feedback/by/id` — Retrieves a single feedback item by its unique identifier from a specific dataset. Use this tool when you need detailed information about a specific feedback item. First obtain the dataset_id using Li
  - body: { dataset_id: integer, feedback_id: integer }
- `POST https://api.mcp.ai/api/mopinion/get/dataset/fields` — Tool to retrieve field definitions for a dataset. Use when you need the schema of a dataset's fields.
  - body: { dataset_id: integer }
- `POST https://api.mcp.ai/api/mopinion/get/deployment/by/id` — Retrieves detailed configuration for a specific feedback form deployment by its ID. Returns deployment rules, trigger conditions, scheduling settings, target URLs, and active status. Use this to under
  - body: { deployment_id: string }
- `POST https://api.mcp.ai/api/mopinion/get/deployments` — Tool to list all deployments for the authenticated Mopinion account. Use after setting up authentication.
  - body: { accept?: string, version?: string }
- `POST https://api.mcp.ai/api/mopinion/get/report/by/id` — Retrieves detailed information about a specific Mopinion report by its ID. Returns comprehensive report details including name, description, language, creation date, and all associated datasets with t
  - body: { report_id: integer }
- `POST https://api.mcp.ai/api/mopinion/get/report/feedback` — Tool to retrieve feedback items for a report. Use when you need paginated and filtered feedback entries for analysis.
  - body: { page?: integer, limit?: integer, filters?: object, report_id: integer }
- `POST https://api.mcp.ai/api/mopinion/get/report/fields` — Tool to retrieve field definitions for a specific report. Use when you need the schema of a report's feedback fields before constructing or analyzing forms.
  - body: { report_id: integer }
- `POST https://api.mcp.ai/api/mopinion/get/root` — Check Mopinion API availability and get version information. Pings the API health check endpoint (/ping) and returns status code, 'pong' response, and current API version. Use this to verify the API i
  - body: { extra_path?: string, custom_base_url?: string, include_auth_header?: boolean }

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

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