Skip to main content
Every tool runs against the organization selected at authorization time, with the scopes granted to the client. Scopes are exact verbs such as feature:create or product:view; if a scope wasn’t granted, the call fails with a 403-equivalent error and the client should prompt the user to re-authorize. Arguments follow the MCP JSON-schema input format. productId, problemId, etc. are Kontext resource IDs — they match the values returned by the corresponding list_* tool.

Products

list_products

List all products in the organization. Scope: product:list · Arguments: none

get_product

Get details of a specific product. Scope: product:view

Features

list_features

List features for a product. Use format: "tree" for a nested hierarchy, or "list" (default) for a flat list with parentId references. Scope: feature:list

create_feature

Create a new feature in a product. Scope: feature:create

Releases

list_releases

List all releases for a product. Scope: release:list

create_release

Create a new release for a product. Releases track product versions and their associated features. Scope: release:create

Feedback

list_feedback

List feedback items for a product, newest first. Cursor-paginated. Scope: feedback:list

submit_feedback

Submit user feedback for AI-powered analysis. Returns a feedback ID you can poll for status. Scope: feedback:create

Problems

list_problems

List problems detected from user feedback for a product. Scope: problem:list

get_problem

Get details of a specific problem. Scope: problem:view

Actors

list_actors

List all actors (user personas / segments) for a product. Scope: actor:list

create_actor

Create a new actor for a product. Actors represent the types of users who interact with the product. Scope: actor:create

Contexts

list_contexts

List all contexts (usage situations / environments) for a product. Scope: context:list

create_context

Create a new context for a product. Contexts describe the situations in which users interact with the product. Scope: context:create

Insights

get_insights_chart

Render an interactive chart of product insights trends. Returns the underlying series data and an inline-renderable chart via the MCP Apps extension — see UI resources for how clients display it. Scope: insight:view