Skip to main content
Glama

update_feature_request

Modify the status or title of a feature request in the Cuti-E admin system to track progress and organize feedback.

Instructions

Update the status or title of a feature request.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
request_idYesFeature request ID (freq_...)
statusNoNew status: new, acknowledged, planned, completed, declined
titleNoNew title for the feature request

Implementation Reference

  • The handler logic for 'update_feature_request' that processes the request by extracting 'status' and 'title' from arguments and sending a PATCH request to the API.
    case "update_feature_request": {
      const body = {};
      if (args.status !== undefined) body.status = args.status;
      if (args.title !== undefined) body.title = args.title;
      result = await apiRequest("PATCH", `/v1/feature-requests/${args.request_id}`, { body });
      break;
    }
  • The input schema definition for 'update_feature_request', specifying the 'request_id', 'status', and 'title' properties.
    {
      name: "update_feature_request",
      description:
        "Update the status or title of a feature request.",
      inputSchema: {
        type: "object",
        properties: {
          request_id: {
            type: "string",
            description: "Feature request ID (freq_...)",
          },
          status: {
            type: "string",
            description: "New status: new, acknowledged, planned, completed, declined",
          },
          title: {
            type: "string",
            description: "New title for the feature request",
          },
        },
        required: ["request_id"],
      },
    },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Stig-Johnny/cutie-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server