{"prompt": "Pantalla de resultados de busqueda de una libreria de comics: filtros a la izquierda y ocho resultados en dos columnas, 880 de ancho.", "mcp": "penpot", "expect": "diseno-penpot", "tools": [{"name": "execute_code", "description": "Executes JavaScript code in the Penpot plugin context.\nIMPORTANT: Before using this tool, make sure you have read the 'Penpot High-Level Overview' and know which Penpot API functionality is necessary and how to use it.\nYou have access two main objects: `penpot` (the Penpot API, of type `Penpot`), `penpotUtils`, and `storage`.\n`storage` is an object in which arbitrary data can be stored, simply by adding a new attribute; stored attributes can be referenced in future calls to this tool, so any intermediate results that could come in handy later should be stored in `storage` instead of just a fleeting variable; you can also store functions and thus build up a library).\nThink of the code being executed as the body of a function: The tool call returns whatever you return in the applicable `return` statement, if any.\nIf an exception occurs, the exception's message will be returned to you.\nAny output that you generate via the `console` object will be returned to you separately; so you may use itto track what your code is doing, but you should *only* do so only if there is an ACTUAL NEED for this! VERY IMPORTANT: Don't use logging prematurely! NEVER log the data you are returning, as you will otherwise receive it twice!\nVERY IMPORTANT: In general, try a simple approach first, and only if it fails, try more complex code that involves handling different cases (in particular error cases) and that applies logging.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {"code": {"type": "string", "minLength": 1, "description": "The JavaScript code to execute in the plugin context."}}, "required": ["code"]}}, {"name": "export_shape", "description": "Exports a shape (or a shape's image fill) from the Penpot design to a PNG or SVG image, such that you can get an impression of what it looks like. ", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {"shapeId": {"type": "string", "minLength": 1, "description": "Identifier of the shape to export. Use the special identifier 'selection' to export the first shape currently selected by the user."}, "format": {"type": "string", "enum": ["svg", "png"], "default": "png", "description": "The output format, either 'png' (default) or 'svg'."}, "mode": {"type": "string", "enum": ["shape", "fill"], "default": "shape", "description": "The export mode: either 'shape' (full shape as it appears in the design, including descendants; the default) or 'fill' (export the raw image that is used as a fill for the shape; PNG format only)"}}, "required": ["shapeId"]}, "notes": "En despliegues con filesystem habilitado, el schema oficial incluye ademas un parametro opcional 'filePath' (para guardar el export a disco) y la descripcion agrega 'Alternatively, you can save it to a file.'. En este deployment (remoto/multi-usuario) 'filePath' esta eliminado del schema y esa frase no aparece -- ver PENPOT_DEPLOYMENT_NOTES.md."}, {"name": "high_level_overview", "description": "Returns basic high-level instructions on the usage of Penpot-related tools and the Penpot API. If you have already read the 'Penpot High-Level Overview', you must not call this tool.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {}}}, {"name": "penpot_api_info", "description": "Retrieves Penpot API documentation for types and their members.Be sure to read the 'Penpot High-Level Overview' first.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {"type": {"type": "string", "minLength": 1}, "member": {"type": "string"}}, "required": ["type"]}}]} {"prompt": "Agrega un comentario 'mapa de sucursales 265' al issue sincronizador-offline-288 de Jira.", "mcp": "atlassian", "expect": "tool-call-valido", "tools": [{"name": "addCommentToJiraIssue", "description": "Add or update a comment on a Jira issue", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "commentBody": {"type": "string", "description": "Comment body"}, "commentId": {"type": "string", "maxLength": 18, "description": "ID of an existing comment to update. If omitted, a new comment is added."}, "commentVisibility": {"type": "object", "additionalProperties": false, "properties": {"type": {"type": "string", "enum": ["group", "role"]}, "value": {"type": "string"}}, "required": ["type", "value"]}, "contentFormat": {"type": "string", "enum": ["markdown", "adf"], "description": "Content format for body content. 'markdown' for simplified plain text. 'adf' (Atlassian Document Format, JSON) for full programmatic fidelity."}, "issueIdOrKey": {"type": "string", "description": "Issue ID or key (e.g., PROJ-123 or 10000)"}, "responseContentFormat": {"type": "string", "enum": ["markdown", "adf"]}}, "required": ["cloudId", "issueIdOrKey", "commentBody"]}}, {"name": "addWorklogToJiraIssue", "description": "Add or update a worklog on a Jira issue. When worklogId is provided, updates that worklog;", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "commentBody": {"type": "string", "description": "Comment body"}, "contentFormat": {"type": "string", "enum": ["markdown", "adf"]}, "issueIdOrKey": {"type": "string", "description": "Issue ID or key (e.g., PROJ-123 or 10000)"}, "started": {"type": "string", "description": "When the work was started (ISO 8601 date-time). If omitted, booked at current date/time."}, "timeSpent": {"type": "string", "description": "Time spent (e.g. 2h, 30m, 4d). Required for new worklogs; use to set or change time when updating."}, "visibility": {"type": "object", "additionalProperties": false, "properties": {"type": {"type": "string", "enum": ["group", "role"]}, "value": {"type": "string"}}, "required": ["type", "value"]}, "worklogId": {"type": "string", "description": "ID of an existing worklog to update. If omitted, a new worklog is created."}}, "required": ["cloudId", "issueIdOrKey", "timeSpent"]}}, {"name": "atlassianUserInfo", "description": "Get current user info", "parameters": {"type": "object", "properties": {}}}, {"name": "createCompassComponent", "description": "Create a new Compass component", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "description": {"type": "string", "description": "Description of the component"}, "labels": {"type": "array", "items": {"type": "string"}, "description": "Labels for the component"}, "name": {"type": "string", "description": "Name of the component"}, "ownerId": {"type": "string", "description": "Owner ID of the component"}, "typeId": {"type": "string", "description": "Type ID of the component"}}, "required": ["cloudId", "name", "typeId"]}}, {"name": "createCompassComponentRelationship", "description": "Create a relationship between Compass components", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "fromComponentId": {"type": "string", "description": "The ARI of the source component"}, "relationshipType": {"type": "string", "enum": ["DEPENDS_ON", "DEPENDENCY_OF"], "description": "Type of relationship"}, "toComponentId": {"type": "string", "description": "The ARI of the target component"}}, "required": ["cloudId", "fromComponentId", "toComponentId", "relationshipType"]}}, {"name": "createCompassCustomFieldDefinition", "description": "Create a custom field definition in Compass", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "input": {"type": "object", "additionalProperties": false, "description": "Input data for creating the custom field definition", "properties": {"description": {"type": "string", "description": "Description of the custom field definition"}, "isRequired": {"type": "boolean", "description": "Whether the custom field is required"}, "name": {"type": "string", "description": "Name of the custom field definition"}, "type": {"type": "string", "enum": ["TEXT", "NUMBER", "BOOLEAN", "USER", "DATE"], "description": "Type of the custom field"}}, "required": ["name", "type"]}}, "required": ["cloudId", "input"]}}, {"name": "createConfluenceFooterComment", "description": "Create a footer comment on a page or blog post", "parameters": {"type": "object", "additionalProperties": false, "properties": {"attachmentId": {"type": "string", "description": "Attachment ID to include"}, "body": {"type": "string", "description": "Page/comment body. HTML supports headings/paragraphs/tables/links/code/lists plus Confluence-specific data-type nodes (panels, status, task/decision lists, expands, layouts, cards, media, dates, mentions, macros/extensions, sync blocks). Never wrap in /
/."}, "cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "contentFormat": {"type": "string", "enum": ["html", "markdown", "adf"]}, "contentType": {"type": "string", "enum": ["page", "blog"], "default": "page"}, "customContentId": {"type": "string", "description": "Custom content ID to include"}, "pageId": {"type": "string", "description": "Page or blog post ID, or a Confluence tiny link ID"}, "parentCommentId": {"type": "string", "description": "Parent comment ID for replies"}}, "required": ["cloudId", "body"]}}, {"name": "createConfluenceInlineComment", "description": "Create an inline comment on specific text in a page or blog post. For top-level comments, provide pageId and inlineCommentProperties (text selection + match counts). For replies, provide parentCommentId only. Must first fetch the page content to find the exact text and count occurrences.", "parameters": {"type": "object", "additionalProperties": false, "properties": {"body": {"type": "string", "description": "Same HTML/markdown/adf body format as createConfluencePage."}, "cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "contentFormat": {"type": "string", "enum": ["html", "markdown", "adf"]}, "contentType": {"type": "string", "enum": ["page", "blog"], "default": "page"}, "inlineCommentProperties": {"type": "object", "additionalProperties": false, "description": "Required for top-level inline comments (not replies).", "properties": {"textSelection": {"type": "string", "minLength": 1, "description": "The exact text on the page to anchor the inline comment to. Must match rendered page text exactly (case-sensitive)."}, "textSelectionMatchCount": {"type": "integer", "minimum": 0, "description": "Total number of times textSelection appears on the page."}, "textSelectionMatchIndex": {"type": "integer", "minimum": 0, "description": "Zero-based index of the specific occurrence to anchor the comment to. Must be < textSelectionMatchCount."}}, "required": ["textSelection", "textSelectionMatchCount", "textSelectionMatchIndex"]}, "pageId": {"type": "string", "description": "Page or blog post ID or tiny link ID. Use for top-level inline comments only; not with parentCommentId."}, "parentCommentId": {"type": "string", "description": "Parent comment ID for replies. When provided, creates a reply; do not provide pageId/inlineCommentProperties."}}, "required": ["cloudId", "body"]}}, {"name": "createConfluencePage", "description": "Create a Confluence page or blog post", "parameters": {"type": "object", "additionalProperties": false, "properties": {"body": {"type": "string", "description": "Page body. HTML: standard blocks (h1-h6, p, table/thead/tbody/tr/th/td, a, pre/code, ul/ol/li) plus Confluence HTML+ data-type nodes -- panels (panel-info/warning/note/success/error), status spans, task/decision lists, expand/details, layout sections, inline cards, dates, mentions, macros/extensions, sync blocks, media groups/inline media. Native macros use data-extension-type=com.atlassian.confluence.macro.core, never storage XML. Do not invent opaque IDs (data-user-id/data-id/data-collection/data-media-id/data-resource-id) -- only copy from existing content/tool output. ADF nesting rules apply (no self-nesting panels/expands/tables/blockquotes; list items/headings/captions are inline-only in some contexts). Never wrap in //."}, "cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "contentFormat": {"type": "string", "enum": ["html", "markdown", "adf"]}, "contentType": {"type": "string", "enum": ["page", "blog"], "default": "page"}, "isPrivate": {"type": "boolean", "description": "Make private"}, "parentId": {"type": "string", "description": "Parent page ID (pages only, ignored for blogs)"}, "spaceId": {"type": "string", "description": "Numeric space ID (a Long, e.g. '131073'). A space key (e.g. 'ENG') or personal-space key (e.g. '~712020abc') is also accepted and resolved automatically."}, "status": {"type": "string", "enum": ["current", "draft"], "default": "current", "description": "Status (draft for unpublished)"}, "subtype": {"type": "string", "enum": ["live"], "description": "Page subtype (pages only, ignored for blogs)"}, "title": {"type": "string", "description": "Page or blog post title"}}, "required": ["cloudId", "spaceId", "body"]}}, {"name": "createIssueLink", "description": "Create a link between two Jira issues. For directional link types (e.g. Blocks): inwardIssue = issue that blocks, outwardIssue = issue that is blocked (e.g. \"A is blocked by B\" -> inwardIssue: B, outwardIssue: A). Use getIssueLinkTypes if link type is unknown.", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "comment": {"type": "string", "description": "Optional comment on the outward issue."}, "contentFormat": {"type": "string", "enum": ["markdown", "adf"]}, "inwardIssue": {"type": "string", "description": "Inward issue key (e.g. HSP-1)."}, "outwardIssue": {"type": "string", "description": "Outward issue key (e.g. MKY-1)."}, "type": {"type": "string", "description": "Link type name (e.g. Duplicate, Blocks, Clones, Relates). Use getIssueLinkTypes to list available types."}}, "required": ["cloudId", "inwardIssue", "outwardIssue", "type"]}}, {"name": "createJiraIssue", "description": "Create a Jira issue. Use additional_fields to set any Jira field that does not have its own parameter (e.g. custom fields, priority, components).", "parameters": {"type": "object", "additionalProperties": false, "properties": {"additional_fields": {"type": "object", "description": "REQUIRED for custom fields. The ONLY parameter to set priority, labels, custom fields, components, fix versions, or any other Jira fields not listed above. Examples: {\"components\": [{\"name\": \"Backend\"}]}, {\"fixVersions\": [{\"name\": \"v1.2\"}]}, {\"priority\": {\"name\": \"High\"}}, {\"labels\": [\"bug\"]}, {\"customfield_10001\": \"value\"}."}, "assignee_account_id": {"type": "string", "description": "Assignee ID"}, "cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "contentFormat": {"type": "string", "enum": ["markdown", "adf"]}, "description": {"description": "Issue description. With contentFormat 'markdown' (default), plain text or Markdown string. With 'adf', an ADF JSON string or document object with type 'doc'."}, "issueTypeName": {"type": "string", "description": "Type (Task, Bug, Story)"}, "parent": {"type": "string", "description": "Parent for subtasks"}, "projectKey": {"type": "string", "description": "Project key"}, "responseContentFormat": {"type": "string", "enum": ["markdown", "adf"]}, "summary": {"type": "string"}, "transition": {"type": "object", "additionalProperties": false, "description": "Optional workflow transition to apply during creation. Use getTransitionsForJiraIssue to find valid IDs. Placed at top level, not inside fields.", "properties": {"id": {"type": "string", "description": "The workflow transition ID to apply during issue creation"}}, "required": ["id"]}}, "required": ["cloudId", "projectKey", "issueTypeName", "summary"]}}, {"name": "editJiraIssue", "description": "Update issue. After updating, returns the issue using the same default read fields as getJiraIssue (summary, description, status, issuetype, priority, labels, components, assignee, reporter, created, updated, resolution, project). Use getJiraIssue with fields [\"*all\"] or a custom list if you need more.", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "contentFormat": {"type": "string", "enum": ["markdown", "adf"]}, "fields": {"type": "object", "description": "Fields to set, keyed by field name or customfield_* ID. To CLEAR a field, pass explicit null, e.g. { \"resolution\": null } -- fixes reopened issues blocked from transitioning because Resolution is still set."}, "issueIdOrKey": {"type": "string", "description": "Issue ID or key (e.g., PROJ-123 or 10000)"}, "responseContentFormat": {"type": "string", "enum": ["markdown", "adf"]}}, "required": ["cloudId", "issueIdOrKey", "fields"]}}, {"name": "fetch", "description": "Get details of a Jira issue or Confluence page by ARI (Atlassian Resource Identifier), if the id is not an ARI, then use a different tool to fetch the content", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Not needed for this tool -- cloudId is extracted from the ARI automatically"}, "id": {"type": "string", "description": "Atlassian Resource Identifier (ARI) from search results, e.g., 'ari:cloud:jira:cloudId:issue/10107' or 'ari:cloud:confluence:cloudId:page/123456789'"}}, "required": ["id"]}}, {"name": "getAccessibleAtlassianResources", "description": "Get cloudId to make tool calls. When a link is provided (e.g. https://site.atlassian.net/*), try passing the site hostname as cloudId to other tools first; if that fails, use this tool to list accessible resources.", "parameters": {"type": "object", "properties": {}}}, {"name": "getCompassComponent", "description": "Get a Compass component by ID", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "componentId": {"type": "string", "description": "The ID of the component to get"}, "includeCustomFieldsInResponse": {"type": "boolean", "default": true, "description": "Whether to include custom fields in the response."}, "includeRelatedComponentsAndDependenciesInResponse": {"type": "boolean", "default": false, "description": "Whether to include related components and dependencies (all relationship types)."}, "includeRelatedLinksInResponse": {"type": "boolean", "default": true, "description": "Whether to include related links (repository, documentation, Jira project, on-call, etc.)."}}, "required": ["cloudId", "componentId"]}}, {"name": "getCompassComponents", "description": "Get a list of Compass components", "parameters": {"type": "object", "additionalProperties": false, "properties": {"after": {"type": "string", "description": "The cursor to start at."}, "cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "filters": {"type": "object", "additionalProperties": false, "description": "Additional filters -- results match ALL provided filters", "properties": {"labels": {"type": "array", "items": {"type": "string"}, "description": "Filter by component labels (e.g., [\"frontend\", \"backend\"])."}, "repositories": {"type": "array", "items": {"type": "string"}, "description": "Filter by repository URLs -- reverse lookup a component by repo."}, "types": {"type": "array", "items": {"type": "string"}, "description": "Filter by component type ids (e.g., [\"SERVICE\", \"LIBRARY\", \"APPLICATION\"])."}}}, "maxResults": {"type": "number", "default": 10, "maximum": 50, "description": "Max items per page."}, "query": {"type": "string", "description": "The query to search for components."}}, "required": ["cloudId"]}}, {"name": "getCompassCustomFieldDefinitions", "description": "Get a list of Compass custom field definitions", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}}, "required": ["cloudId"]}}, {"name": "getConfluenceCommentChildren", "description": "Get reply(child) comments for a comment", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "commentId": {"type": "string", "description": "Parent comment ID"}, "commentType": {"type": "string", "enum": ["footer", "inline"]}, "contentFormat": {"type": "string", "enum": ["markdown", "adf"]}, "cursor": {"type": "string", "description": "Pagination cursor"}, "limit": {"type": "number", "description": "Max replies"}, "sort": {"type": "string", "enum": ["id", "-id", "created-date", "-created-date"]}}, "required": ["cloudId", "commentId", "commentType"]}}, {"name": "getConfluencePage", "description": "Get a Confluence page or blog post by ID, including body content.", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "contentFormat": {"type": "string", "enum": ["html", "markdown", "adf"], "description": "'html' for structured HTML (round-trip safe, preserves inline comments/local IDs). 'markdown' for simplified plain text."}, "contentType": {"type": "string", "enum": ["page", "blog"], "default": "page"}, "pageId": {"type": "string", "description": "Page or blog post ID, or a Confluence tiny link ID (encoded part from /wiki/x/ URLs)"}}, "required": ["cloudId", "pageId"]}}, {"name": "getConfluencePageDescendants", "description": "Get child pages of specified page", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "cursor": {"type": "string", "description": "Pagination cursor"}, "depth": {"type": "number", "description": "Max depth"}, "limit": {"type": "number", "description": "Max descendants"}, "pageId": {"type": "string", "description": "Page or blog post ID, or a Confluence tiny link ID"}}, "required": ["cloudId", "pageId"]}}, {"name": "getConfluencePageFooterComments", "description": "Get footer comments for a page or blog post", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "contentFormat": {"type": "string", "enum": ["markdown", "adf"]}, "contentType": {"type": "string", "enum": ["page", "blog"], "default": "page"}, "cursor": {"type": "string", "description": "Pagination cursor"}, "includeReplies": {"type": "boolean", "default": false, "description": "When true, also return reply comments"}, "limit": {"type": "number", "description": "Max comments"}, "pageId": {"type": "string", "description": "Page or blog post ID, or a Confluence tiny link ID"}, "repliesPerComment": {"type": "integer", "minimum": 1, "maximum": 25}, "sort": {"type": "string", "enum": ["id", "-id", "created-date", "-created-date"]}, "status": {"type": "string", "enum": ["current", "archived", "trashed", "deleted", "historical", "draft"], "default": "current"}}, "required": ["cloudId", "pageId"]}}, {"name": "getConfluencePageInlineComments", "description": "Get inline comments for a page or blog post", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "contentFormat": {"type": "string", "enum": ["markdown", "adf"]}, "contentType": {"type": "string", "enum": ["page", "blog"], "default": "page"}, "cursor": {"type": "string", "description": "Pagination cursor"}, "includeReplies": {"type": "boolean", "default": false, "description": "When true, also return reply comments"}, "limit": {"type": "number", "description": "Max comments"}, "pageId": {"type": "string", "description": "Page or blog post ID, or a Confluence tiny link ID"}, "repliesPerComment": {"type": "integer", "minimum": 1, "maximum": 25}, "resolutionStatus": {"type": "string", "enum": ["resolved", "open", "dangling", "reopened"], "default": "open"}, "sort": {"type": "string", "enum": ["id", "-id", "created-date", "-created-date"]}, "status": {"type": "string", "enum": ["current", "archived", "trashed", "deleted", "historical", "draft"], "default": "current"}}, "required": ["cloudId", "pageId"]}}, {"name": "getConfluenceSpaces", "description": "Get spaces", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "expand": {"description": "Properties to expand (string or array of strings)"}, "favoritedBy": {"type": "string", "description": "User favorites"}, "favourite": {"type": "boolean", "description": "Favorite spaces only"}, "ids": {"description": "Space IDs (string or array of numbers)"}, "keys": {"description": "Space keys (string or array of strings)"}, "labels": {"description": "Space labels (string or array of strings)"}, "limit": {"type": "number", "description": "Max results (default: 25, max: 250)"}, "start": {"type": "number", "description": "Start index"}, "status": {"type": "string", "enum": ["current", "archived"]}, "type": {"type": "string", "enum": ["global", "personal"]}}, "required": ["cloudId"]}}, {"name": "getIssueLinkTypes", "description": "Get available Jira issue link types (e.g. Blocks, Duplicate, Clones, Relates). For createIssueLink: inwardIssue = blocker, outwardIssue = blocked (e.g. \"A is blocked by B\" -> inwardIssue: B, outwardIssue: A).", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}}, "required": ["cloudId"]}}, {"name": "getJiraIssue", "description": "Get issue details", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "expand": {"type": "string", "description": "Additional issue details to expand (e.g. renderedFields, names)."}, "failFast": {"type": "boolean", "description": "Whether to fail quickly when some fields cannot be loaded instead of partially returning data."}, "fields": {"type": "array", "items": {"type": "string"}, "description": "Issue fields to return. Defaults to summary/description/status/issuetype/priority/labels/components/assignee/reporter/created/updated/resolution/project. Pass \"*all\" for every field. Include \"comment\" to get comments in fields.comment.comments."}, "fieldsByKeys": {"type": "boolean", "description": "Whether fields in the request are referenced by field keys instead of IDs."}, "issueIdOrKey": {"type": "string", "description": "Issue ID or key (e.g., PROJ-123 or 10000)"}, "properties": {"type": "array", "items": {"type": "string"}, "description": "Issue property keys to include in the response."}, "responseContentFormat": {"type": "string", "enum": ["markdown", "adf"]}, "updateHistory": {"type": "boolean", "description": "Whether to update the user's recently viewed projects/history for this issue request."}}, "required": ["cloudId", "issueIdOrKey"]}}, {"name": "getJiraIssueRemoteIssueLinks", "description": "Get remote links", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "globalId": {"type": "string"}, "issueIdOrKey": {"type": "string", "description": "Issue ID or key (e.g., PROJ-123 or 10000)"}}, "required": ["cloudId", "issueIdOrKey"]}}, {"name": "getJiraIssueTypeMetaWithFields", "description": "Get field metadata", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "issueTypeId": {"type": "string"}, "maxResults": {"type": "number"}, "projectIdOrKey": {"type": "string"}, "requiredFieldsOnly": {"type": "boolean", "description": "When true (default), returns only required fields to create an issue of this type. Set false for all fields."}, "startAt": {"type": "number"}}, "required": ["cloudId", "projectIdOrKey", "issueTypeId"]}}, {"name": "getJiraProjectIssueTypesMetadata", "description": "Get issue types", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "maxResults": {"type": "number", "default": 50, "maximum": 200}, "projectIdOrKey": {"type": "string"}, "startAt": {"type": "number", "default": 0}}, "required": ["cloudId", "projectIdOrKey"]}}, {"name": "getPagesInConfluenceSpace", "description": "Get pages or blog posts in a space", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "contentFormat": {"type": "string", "enum": ["markdown", "adf"]}, "contentType": {"type": "string", "enum": ["page", "blog"], "default": "page"}, "cursor": {"type": "string", "description": "Pagination cursor"}, "limit": {"type": "number", "description": "Max results (default: 25, max: 250)"}, "sort": {"type": "string", "enum": ["id", "-id", "created-date", "-created-date", "modified-date", "-modified-date", "title", "-title"]}, "spaceId": {"type": "string", "description": "Space ID"}, "status": {"type": "string", "enum": ["current", "archived", "deleted", "trashed"]}, "title": {"type": "string", "description": "Title filter"}}, "required": ["cloudId", "spaceId"]}}, {"name": "getTransitionsForJiraIssue", "description": "Get transitions", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "expand": {"type": "string"}, "includeUnavailableTransitions": {"type": "boolean"}, "issueIdOrKey": {"type": "string", "description": "Issue ID or key (e.g., PROJ-123 or 10000)"}, "skipRemoteOnlyCondition": {"type": "boolean"}, "sortByOpsBarAndStatus": {"type": "boolean"}, "transitionId": {"type": "string"}}, "required": ["cloudId", "issueIdOrKey"]}}, {"name": "getVisibleJiraProjects", "description": "Get projects", "parameters": {"type": "object", "additionalProperties": false, "properties": {"action": {"type": "string", "enum": ["view", "browse", "edit", "create"], "default": "create"}, "cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "expandIssueTypes": {"type": "boolean", "default": true}, "maxResults": {"type": "number", "default": 50, "maximum": 50}, "searchString": {"type": "string"}, "startAt": {"type": "number", "default": 0}}, "required": ["cloudId"]}}, {"name": "lookupJiraAccountId", "description": "Lookup user IDs", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "searchString": {"type": "string"}}, "required": ["cloudId", "searchString"]}}, {"name": "search", "description": "Search Jira and Confluence using Rovo Search, ALWAYS use this tool to search for Jira and Confluence content unless the word CQL or JQL is used in the context", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Not needed for this tool -- cloudId is derived from your access token automatically"}, "query": {"type": "string", "description": "The search query to use for Rovo Search"}}, "required": ["query"]}}, {"name": "searchConfluenceUsingCql", "description": "Search Confluence content (pages, blog posts, comments, attachments) using CQL (Confluence Query Language). CQL is specific to Confluence and is not interchangeable with JQL.", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "cql": {"type": "string", "description": "CQL query string. Common fields: title, text, space, type, creator, contributor, label, ancestor, parent, lastmodified, created, mention, watcher, space.title, space.key. Use space key (not name) for the space field; use space.title ~ \"name\" for name search. Content types: page, blogpost, comment, attachment. Escape inner quotes with backslash."}, "cqlcontext": {"type": "string", "description": "CQL context for narrowing search scope (e.g., spaceKey)"}, "cursor": {"type": "string", "description": "Pagination cursor"}, "expand": {"type": "string", "description": "Properties to expand"}, "limit": {"type": "number", "description": "Max results (default: 25, max: 250)"}, "next": {"type": "boolean", "description": "Include next page link"}, "prev": {"type": "boolean", "description": "Include previous page link"}}, "required": ["cloudId", "cql"]}}, {"name": "searchJiraIssuesUsingJql", "description": "Search issues with JQL, total counts only when explicitly requested.", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "fields": {"type": "array", "items": {"type": "string"}, "description": "Issue fields to return. Defaults as in getJiraIssue. Pass \"*all\" for every field. Include \"comment\" for comments."}, "jql": {"type": "string", "description": "JQL query"}, "maxResults": {"type": "number", "maximum": 100, "description": "Max (50-100)"}, "nextPageToken": {"type": "string", "description": "Page token"}, "responseContentFormat": {"type": "string", "enum": ["markdown", "adf"]}, "searchResultMode": {"type": "string", "enum": ["issues", "count", "all"], "description": "Default \"issues\". Never count for normal search or if nextPageToken used. Use \"count\" only when no trusted count exists and needed. Use \"all\" only if both required."}}, "required": ["cloudId", "jql"]}}, {"name": "transitionJiraIssue", "description": "Transition issue status", "parameters": {"type": "object", "additionalProperties": false, "properties": {"cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "fields": {"type": "object"}, "historyMetadata": {"type": "object", "additionalProperties": false, "properties": {"activityDescription": {"type": "string"}, "activityDescriptionKey": {"type": "string"}, "actor": {"type": "object", "additionalProperties": false, "properties": {"avatarUrl": {"type": "string"}, "displayName": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "url": {"type": "string"}}}, "cause": {"type": "object", "additionalProperties": false, "properties": {"avatarUrl": {"type": "string"}, "displayName": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "url": {"type": "string"}}}, "description": {"type": "string"}, "descriptionKey": {"type": "string"}, "emailDescription": {"type": "string"}, "emailDescriptionKey": {"type": "string"}, "extraData": {"type": "object", "additionalProperties": {"type": "string"}}, "generator": {"type": "object", "additionalProperties": false, "properties": {"avatarUrl": {"type": "string"}, "displayName": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "url": {"type": "string"}}}, "type": {"type": "string"}}}, "issueIdOrKey": {"type": "string", "description": "Issue ID or key (e.g., PROJ-123 or 10000)"}, "transition": {"type": "object", "additionalProperties": false, "properties": {"id": {"type": "string"}}, "required": ["id"]}, "update": {"type": "object", "additionalProperties": {"type": "array", "items": {"type": "object"}}}}, "required": ["cloudId", "issueIdOrKey", "transition"]}}, {"name": "updateConfluencePage", "description": "Update a Confluence page or blog post", "parameters": {"type": "object", "additionalProperties": false, "properties": {"body": {"type": "string", "description": "Same HTML/markdown/adf body format as createConfluencePage."}, "cloudId": {"type": "string", "description": "Cloud ID (UUID or site URL)"}, "contentFormat": {"type": "string", "enum": ["html", "markdown", "adf"]}, "contentType": {"type": "string", "enum": ["page", "blog"], "default": "page"}, "includeBody": {"type": "boolean", "default": false, "description": "If true, include the page body in the response; if false, omit to reduce payload size."}, "pageId": {"type": "string", "description": "Page or blog post ID, or a Confluence tiny link ID"}, "parentId": {"type": "string", "description": "Parent page ID (pages only, ignored for blogs)"}, "spaceId": {"type": "string", "description": "Space ID"}, "status": {"type": "string", "enum": ["current", "draft"], "default": "current"}, "title": {"type": "string", "description": "New title"}, "versionMessage": {"type": "string", "description": "Version message"}}, "required": ["cloudId", "pageId", "body"]}}]} {"prompt": "Pantalla mobile de 720x96 para la app de un taller de ceramica: onboarding de tres pasos con ilustracion y boton primario #c2410c.", "mcp": "penpot", "expect": "diseno-penpot", "tools": [{"name": "execute_code", "description": "Executes JavaScript code in the Penpot plugin context.\nIMPORTANT: Before using this tool, make sure you have read the 'Penpot High-Level Overview' and know which Penpot API functionality is necessary and how to use it.\nYou have access two main objects: `penpot` (the Penpot API, of type `Penpot`), `penpotUtils`, and `storage`.\n`storage` is an object in which arbitrary data can be stored, simply by adding a new attribute; stored attributes can be referenced in future calls to this tool, so any intermediate results that could come in handy later should be stored in `storage` instead of just a fleeting variable; you can also store functions and thus build up a library).\nThink of the code being executed as the body of a function: The tool call returns whatever you return in the applicable `return` statement, if any.\nIf an exception occurs, the exception's message will be returned to you.\nAny output that you generate via the `console` object will be returned to you separately; so you may use itto track what your code is doing, but you should *only* do so only if there is an ACTUAL NEED for this! VERY IMPORTANT: Don't use logging prematurely! NEVER log the data you are returning, as you will otherwise receive it twice!\nVERY IMPORTANT: In general, try a simple approach first, and only if it fails, try more complex code that involves handling different cases (in particular error cases) and that applies logging.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {"code": {"type": "string", "minLength": 1, "description": "The JavaScript code to execute in the plugin context."}}, "required": ["code"]}}, {"name": "export_shape", "description": "Exports a shape (or a shape's image fill) from the Penpot design to a PNG or SVG image, such that you can get an impression of what it looks like. ", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {"shapeId": {"type": "string", "minLength": 1, "description": "Identifier of the shape to export. Use the special identifier 'selection' to export the first shape currently selected by the user."}, "format": {"type": "string", "enum": ["svg", "png"], "default": "png", "description": "The output format, either 'png' (default) or 'svg'."}, "mode": {"type": "string", "enum": ["shape", "fill"], "default": "shape", "description": "The export mode: either 'shape' (full shape as it appears in the design, including descendants; the default) or 'fill' (export the raw image that is used as a fill for the shape; PNG format only)"}}, "required": ["shapeId"]}, "notes": "En despliegues con filesystem habilitado, el schema oficial incluye ademas un parametro opcional 'filePath' (para guardar el export a disco) y la descripcion agrega 'Alternatively, you can save it to a file.'. En este deployment (remoto/multi-usuario) 'filePath' esta eliminado del schema y esa frase no aparece -- ver PENPOT_DEPLOYMENT_NOTES.md."}, {"name": "high_level_overview", "description": "Returns basic high-level instructions on the usage of Penpot-related tools and the Penpot API. If you have already read the 'Penpot High-Level Overview', you must not call this tool.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {}}}, {"name": "penpot_api_info", "description": "Retrieves Penpot API documentation for types and their members.Be sure to read the 'Penpot High-Level Overview' first.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {"type": {"type": "string", "minLength": 1}, "member": {"type": "string"}}, "required": ["type"]}}]} {"prompt": "Fijate si quedo algun comentario sin responder en 'gateway-eventos' de esta semana.", "mcp": "docmost", "expect": "tool-call-valido", "tools": [{"name": "check_new_comments", "description": "Check for new comments across pages in a space since a given timestamp. Optionally scope to a page subtree (folder). Returns only comments created after the specified time.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "properties": {"spaceId": {"type": "string", "description": "Space ID to check for new comments"}, "since": {"type": "string", "description": "ISO 8601 timestamp — only return comments created after this time (e.g. '2026-03-10T00:00:00Z')"}, "parentPageId": {"type": "string", "description": "Optional root page ID to scope the check to a subtree (folder). Only pages under this parent will be checked."}}, "required": ["spaceId", "since"]}}, {"name": "create_comment", "description": "Create a new comment on a page. Content is provided as Markdown and automatically converted to the required format.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "properties": {"pageId": {"type": "string", "description": "ID of the page to comment on"}, "content": {"type": "string", "description": "Comment content in Markdown format"}, "parentCommentId": {"type": "string", "description": "Parent comment ID to create a reply (max 2 nesting levels)"}, "selection": {"type": "string", "description": "Selected text for inline comments (max 250 chars). Required when type is 'inline'."}, "type": {"type": "string", "enum": ["page", "inline"], "description": "Comment type: 'page' for general page comment (default), 'inline' for text selection comment"}}, "required": ["pageId", "content"]}}, {"name": "create_page", "description": "Create a new page with content (automatically moves it to the correct hierarchy).", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "properties": {"title": {"type": "string", "description": "Title of the page"}, "content": {"type": "string", "description": "Markdown content"}, "spaceId": {"type": "string"}, "parentPageId": {"type": "string", "description": "Optional parent page ID to nest under"}}, "required": ["title", "content", "spaceId"]}}, {"name": "delete_comment", "description": "Delete a comment. Only the comment creator or space admin can delete it.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "properties": {"commentId": {"type": "string", "description": "ID of the comment to delete"}}, "required": ["commentId"]}}, {"name": "delete_page", "description": "Delete a single page by ID.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "properties": {"pageId": {"type": "string"}}, "required": ["pageId"]}}, {"name": "delete_pages", "description": "Delete multiple pages at once. Useful for cleanup.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "properties": {"pageIds": {"type": "array", "items": {"type": "string"}}}, "required": ["pageIds"]}}, {"name": "get_comment", "description": "Get a single comment by ID with content as Markdown.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "properties": {"commentId": {"type": "string", "description": "ID of the comment"}}, "required": ["commentId"]}}, {"name": "get_page", "description": "Get details and content of a specific page by ID", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "properties": {"pageId": {"type": "string"}}, "required": ["pageId"]}}, {"name": "get_workspace", "description": "Get the current Docmost workspace", "parameters": {"type": "object", "properties": {}}}, {"name": "list_comments", "description": "List all comments on a page. Returns comments with content converted to Markdown.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "properties": {"pageId": {"type": "string", "description": "ID of the page to list comments for"}}, "required": ["pageId"]}}, {"name": "list_groups", "description": "List all available groups in Docmost", "parameters": {"type": "object", "properties": {}}}, {"name": "list_pages", "description": "List pages in a space ordered by updatedAt (descending).", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "properties": {"spaceId": {"type": "string"}}}}, {"name": "list_spaces", "description": "List all available spaces in Docmost", "parameters": {"type": "object", "properties": {}}}, {"name": "move_page", "description": "Move a page to a new parent (nesting) or root. Essential for organizing pages created via 'import_page'.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "properties": {"pageId": {"type": "string"}, "parentPageId": {"type": ["string", "null"], "description": "Target parent page ID. Pass 'null' or empty string to move to root."}, "position": {"type": "string", "description": "Optional position string (5-12 chars). Defaults to 'a00000' (end) if omitted."}}, "required": ["pageId"]}}, {"name": "search", "description": "Search for pages and content.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "properties": {"query": {"type": "string", "description": "Search query"}, "spaceId": {"type": "string", "description": "Optional space ID to filter by"}}, "required": ["query"]}}, {"name": "update_comment", "description": "Update an existing comment's content. Only the comment creator can update it. Content is provided as Markdown.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "properties": {"commentId": {"type": "string", "description": "ID of the comment to update"}, "content": {"type": "string", "description": "New comment content in Markdown format"}}, "required": ["commentId", "content"]}}, {"name": "update_page", "description": "Update a page's content and/or title via realtime collaboration (preserves Page ID and history).", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "properties": {"pageId": {"type": "string", "description": "ID of the page to update"}, "content": {"type": "string", "description": "New Markdown content"}, "title": {"type": "string", "description": "Optional new title"}}, "required": ["pageId", "content"]}, "notes": "Requiere SIEMPRE la fila separadora GFM (| --- | --- |) en tablas markdown, con cada fila en su propia linea -- sin eso el editor colapsa las filas en un parrafo ilegible (bug real documentado en el plan principal)."}]} {"prompt": "Hero de 720x96 para una escuela de buceo con foto de fondo, un velo oscuro encima y titular en blanco.", "mcp": "penpot", "expect": "diseno-penpot", "tools": [{"name": "execute_code", "description": "Executes JavaScript code in the Penpot plugin context.\nIMPORTANT: Before using this tool, make sure you have read the 'Penpot High-Level Overview' and know which Penpot API functionality is necessary and how to use it.\nYou have access two main objects: `penpot` (the Penpot API, of type `Penpot`), `penpotUtils`, and `storage`.\n`storage` is an object in which arbitrary data can be stored, simply by adding a new attribute; stored attributes can be referenced in future calls to this tool, so any intermediate results that could come in handy later should be stored in `storage` instead of just a fleeting variable; you can also store functions and thus build up a library).\nThink of the code being executed as the body of a function: The tool call returns whatever you return in the applicable `return` statement, if any.\nIf an exception occurs, the exception's message will be returned to you.\nAny output that you generate via the `console` object will be returned to you separately; so you may use itto track what your code is doing, but you should *only* do so only if there is an ACTUAL NEED for this! VERY IMPORTANT: Don't use logging prematurely! NEVER log the data you are returning, as you will otherwise receive it twice!\nVERY IMPORTANT: In general, try a simple approach first, and only if it fails, try more complex code that involves handling different cases (in particular error cases) and that applies logging.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {"code": {"type": "string", "minLength": 1, "description": "The JavaScript code to execute in the plugin context."}}, "required": ["code"]}}, {"name": "export_shape", "description": "Exports a shape (or a shape's image fill) from the Penpot design to a PNG or SVG image, such that you can get an impression of what it looks like. ", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {"shapeId": {"type": "string", "minLength": 1, "description": "Identifier of the shape to export. Use the special identifier 'selection' to export the first shape currently selected by the user."}, "format": {"type": "string", "enum": ["svg", "png"], "default": "png", "description": "The output format, either 'png' (default) or 'svg'."}, "mode": {"type": "string", "enum": ["shape", "fill"], "default": "shape", "description": "The export mode: either 'shape' (full shape as it appears in the design, including descendants; the default) or 'fill' (export the raw image that is used as a fill for the shape; PNG format only)"}}, "required": ["shapeId"]}, "notes": "En despliegues con filesystem habilitado, el schema oficial incluye ademas un parametro opcional 'filePath' (para guardar el export a disco) y la descripcion agrega 'Alternatively, you can save it to a file.'. En este deployment (remoto/multi-usuario) 'filePath' esta eliminado del schema y esa frase no aparece -- ver PENPOT_DEPLOYMENT_NOTES.md."}, {"name": "high_level_overview", "description": "Returns basic high-level instructions on the usage of Penpot-related tools and the Penpot API. If you have already read the 'Penpot High-Level Overview', you must not call this tool.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {}}}, {"name": "penpot_api_info", "description": "Retrieves Penpot API documentation for types and their members.Be sure to read the 'Penpot High-Level Overview' first.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {"type": {"type": "string", "minLength": 1}, "member": {"type": "string"}}, "required": ["type"]}}]} {"prompt": "Un cotizador simple para un festival de cine documental de 720x96: dos selectores, un deslizador y el resultado en grande.", "mcp": "penpot", "expect": "diseno-penpot", "tools": [{"name": "execute_code", "description": "Executes JavaScript code in the Penpot plugin context.\nIMPORTANT: Before using this tool, make sure you have read the 'Penpot High-Level Overview' and know which Penpot API functionality is necessary and how to use it.\nYou have access two main objects: `penpot` (the Penpot API, of type `Penpot`), `penpotUtils`, and `storage`.\n`storage` is an object in which arbitrary data can be stored, simply by adding a new attribute; stored attributes can be referenced in future calls to this tool, so any intermediate results that could come in handy later should be stored in `storage` instead of just a fleeting variable; you can also store functions and thus build up a library).\nThink of the code being executed as the body of a function: The tool call returns whatever you return in the applicable `return` statement, if any.\nIf an exception occurs, the exception's message will be returned to you.\nAny output that you generate via the `console` object will be returned to you separately; so you may use itto track what your code is doing, but you should *only* do so only if there is an ACTUAL NEED for this! VERY IMPORTANT: Don't use logging prematurely! NEVER log the data you are returning, as you will otherwise receive it twice!\nVERY IMPORTANT: In general, try a simple approach first, and only if it fails, try more complex code that involves handling different cases (in particular error cases) and that applies logging.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {"code": {"type": "string", "minLength": 1, "description": "The JavaScript code to execute in the plugin context."}}, "required": ["code"]}}, {"name": "export_shape", "description": "Exports a shape (or a shape's image fill) from the Penpot design to a PNG or SVG image, such that you can get an impression of what it looks like. ", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {"shapeId": {"type": "string", "minLength": 1, "description": "Identifier of the shape to export. Use the special identifier 'selection' to export the first shape currently selected by the user."}, "format": {"type": "string", "enum": ["svg", "png"], "default": "png", "description": "The output format, either 'png' (default) or 'svg'."}, "mode": {"type": "string", "enum": ["shape", "fill"], "default": "shape", "description": "The export mode: either 'shape' (full shape as it appears in the design, including descendants; the default) or 'fill' (export the raw image that is used as a fill for the shape; PNG format only)"}}, "required": ["shapeId"]}, "notes": "En despliegues con filesystem habilitado, el schema oficial incluye ademas un parametro opcional 'filePath' (para guardar el export a disco) y la descripcion agrega 'Alternatively, you can save it to a file.'. En este deployment (remoto/multi-usuario) 'filePath' esta eliminado del schema y esa frase no aparece -- ver PENPOT_DEPLOYMENT_NOTES.md."}, {"name": "high_level_overview", "description": "Returns basic high-level instructions on the usage of Penpot-related tools and the Penpot API. If you have already read the 'Penpot High-Level Overview', you must not call this tool.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {}}}, {"name": "penpot_api_info", "description": "Retrieves Penpot API documentation for types and their members.Be sure to read the 'Penpot High-Level Overview' first.", "parameters": {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {"type": {"type": "string", "minLength": 1}, "member": {"type": "string"}}, "required": ["type"]}}]} {"prompt": "Lista los issues abiertos de 'motor-reportes' con label 'enhancement'.", "mcp": "github-personal", "expect": "tool-call-valido", "tools": [{"name": "add_comment_to_pending_review", "description": "Add review comment to the requester's latest pending pull request review. A pending review needs to already exist to call this (check with the user if not sure).", "parameters": {"type": "object", "properties": {"body": {"type": "string", "description": "The text of the review comment"}, "line": {"type": "number", "description": "The line of the blob in the pull request diff that the comment applies to. For multi-line comments, the last line of the range"}, "owner": {"type": "string", "description": "Repository owner"}, "path": {"type": "string", "description": "The relative path to the file that necessitates a comment"}, "pullNumber": {"type": "number", "description": "Pull request number"}, "repo": {"type": "string", "description": "Repository name"}, "side": {"type": "string", "enum": ["LEFT", "RIGHT"], "description": "The side of the diff to comment on. LEFT indicates the previous state, RIGHT indicates the new state"}, "startLine": {"type": "number", "description": "For multi-line comments, the first line of the range that the comment applies to"}, "startSide": {"type": "string", "enum": ["LEFT", "RIGHT"], "description": "For multi-line comments, the starting side of the diff that the comment applies to"}, "subjectType": {"type": "string", "enum": ["FILE", "LINE"], "description": "The level at which the comment is targeted"}}, "required": ["owner", "repo", "pullNumber", "path", "body", "subjectType"]}}, {"name": "add_issue_comment", "description": "Add a comment to a specific issue in a GitHub repository. Use this tool to add comments to pull requests as well (in this case pass pull request number as issue_number), but only if user is not asking specifically to add review comments.", "parameters": {"type": "object", "properties": {"body": {"type": "string", "description": "Comment content"}, "issue_number": {"type": "number", "description": "Issue number to comment on"}, "owner": {"type": "string", "description": "Repository owner"}, "repo": {"type": "string", "description": "Repository name"}}, "required": ["owner", "repo", "issue_number", "body"]}}, {"name": "add_reply_to_pull_request_comment", "description": "Add a reply to an existing pull request comment. This creates a new comment that is linked as a reply to the specified comment.", "parameters": {"type": "object", "properties": {"body": {"type": "string", "description": "The text of the reply"}, "commentId": {"type": "number", "description": "The ID of the comment to reply to"}, "owner": {"type": "string", "description": "Repository owner"}, "pullNumber": {"type": "number", "description": "Pull request number"}, "repo": {"type": "string", "description": "Repository name"}}, "required": ["owner", "repo", "pullNumber", "commentId", "body"]}}, {"name": "assign_copilot_to_issue", "description": "Assign Copilot to a specific issue in a GitHub repository.\n\nThis tool can help with the following outcomes:\n- a Pull Request created with source code changes to resolve the issue\n\n\nMore information can be found at:\n- https://docs.github.com/en/copilot/using-github-copilot/using-copilot-coding-agent-to-work-on-tasks/about-assigning-tasks-to-copilot\n", "parameters": {"type": "object", "properties": {"base_ref": {"type": "string", "description": "Git reference (e.g., branch) that the agent will start its work from. If not specified, defaults to the repository's default branch"}, "custom_instructions": {"type": "string", "description": "Optional custom instructions to guide the agent beyond the issue body."}, "issue_number": {"type": "number", "description": "Issue number"}, "owner": {"type": "string", "description": "Repository owner"}, "repo": {"type": "string", "description": "Repository name"}}, "required": ["owner", "repo", "issue_number"]}}, {"name": "create_branch", "description": "Create a new branch in a GitHub repository", "parameters": {"type": "object", "properties": {"branch": {"type": "string", "description": "Name for new branch"}, "from_branch": {"type": "string", "description": "Source branch (defaults to repo default)"}, "owner": {"type": "string", "description": "Repository owner"}, "repo": {"type": "string", "description": "Repository name"}}, "required": ["owner", "repo", "branch"]}}, {"name": "create_or_update_file", "description": "Create or update a single file in a GitHub repository.\nIf updating, you should provide the SHA of the file you want to update. Use this tool to create or update a file in a GitHub repository remotely; do not use it for local file operations.\n\nIn order to obtain the SHA of original file version before updating, use the following git command:\ngit rev-parse