MCP Tools Reference
Complete list of available MCP tools and their parameters
MCP Tools Reference
The UserHero MCP server provides tools organized by resource type. All tools respect your workspace role permissions.
Workspaces
list_workspaces
List all workspaces you have access to.
Parameters: None
Returns: Array of workspaces with id, name, plan, and your role
Example prompt:
"Show me all my UserHero workspaces"
get_workspace
Get detailed information about a specific workspace.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
workspaceId | string | Yes | The workspace ID |
Returns: Workspace details including members, plan, and settings
get_workspace_usage
Get usage statistics and plan limits for a workspace.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
workspaceId | string | Yes | The workspace ID |
Returns: Current usage, limits, and billing period info
Example prompt:
"How much of our feedback quota have we used this month?"
Projects
list_projects
List all projects in a workspace.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
workspaceId | string | Yes | The workspace ID |
get_project
Get project details including privacy settings.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
projectId | string | Yes | The project ID |
create_project
Create a new project. Requires member role or higher.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
workspaceId | string | Yes | The workspace ID |
name | string | Yes | Project name |
type | string | Yes | web, ios, or android |
domain | string | No | Domain for web projects |
Example prompt:
"Create a new web project called 'Marketing Site' for domain marketing.example.com"
update_project
Update project settings. Requires member role or higher.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
projectId | string | Yes | The project ID |
name | string | No | New project name |
domain | string | No | New domain |
privacySettings | object | No | Privacy configuration |
delete_project
Delete a project and all its data. Requires admin role or higher.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
projectId | string | Yes | The project ID |
This permanently deletes all widgets, feedback, and integrations for the project.
Widgets
list_widgets
List all widgets in a project.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
projectId | string | Yes | The project ID |
get_widget
Get widget configuration details.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
widgetId | string | Yes | The widget ID |
create_widget
Create a new feedback widget. Requires member role or higher.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
projectId | string | Yes | The project ID |
name | string | Yes | Widget name |
template | string | Yes | Template type (see below) |
type | string | No | floating, embedded, popup, link |
Available templates:
feedback- General feedback formbug-report- Bug report with screenshotrating- Star ratingnps- Net Promoter Score (0-10)satisfaction- Customer satisfactionfeature-request- Feature requestscontact- Contact form
Example prompt:
"Create a floating NPS widget called 'Monthly Survey'"
update_widget
Update widget configuration. Requires member role or higher.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
widgetId | string | Yes | The widget ID |
name | string | No | New widget name |
config | object | No | Widget configuration |
styling | object | No | Widget styling |
targeting | object | No | Display targeting rules |
delete_widget
Delete a widget. Requires admin role or higher.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
widgetId | string | Yes | The widget ID |
Feedback
list_feedback
List feedback with optional filters.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
projectId | string | Yes | The project ID |
widgetId | string | No | Filter by widget |
status | string | No | new, in-progress, resolved, archived |
category | string | No | Filter by category |
limit | number | No | Max results (default 50) |
startAfter | string | No | Cursor for pagination |
Example prompt:
"Show me all unresolved bug reports from the last week"
get_feedback
Get full feedback details including internal notes.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
feedbackId | string | Yes | The feedback ID |
update_feedback_status
Update feedback status. Requires member role or higher.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
feedbackId | string | Yes | The feedback ID |
status | string | Yes | New status |
Example prompt:
"Mark feedback abc123 as resolved"
add_note
Add an internal note to feedback. Requires member role or higher.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
feedbackId | string | Yes | The feedback ID |
content | string | Yes | Note content |
Example prompt:
"Add a note to feedback abc123 saying 'Fixed in release 2.1.0'"
delete_feedback
Delete a feedback item. Requires admin role or higher.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
feedbackId | string | Yes | The feedback ID |
Integrations
list_integrations
List integrations for a project.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
projectId | string | Yes | The project ID |
create_integration
Create a new integration. Requires admin role or higher.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
projectId | string | Yes | The project ID |
type | string | Yes | slack, email, or webhook |
config | object | Yes | Integration-specific config |
Slack config:
{
"webhookUrl": "https://hooks.slack.com/...",
"channel": "#feedback"
}Email config:
{
"emails": ["team@example.com"]
}Webhook config:
{
"url": "https://api.example.com/webhook",
"secret": "whsec_..."
}delete_integration
Delete an integration. Requires admin role or higher.
Parameters:
| Name | Type | Required | Description |
|---|---|---|---|
integrationId | string | Yes | The integration ID |
Permission Requirements
| Tool | Minimum Role |
|---|---|
All list_* and get_* tools | viewer |
create_*, update_*, add_note | member |
delete_* | admin |
| Integration management | admin |