MCP Gateway
ApiPrompt management

List all prompts

Returns all registered prompts with their override status.

GET
/api/v1/settings/prompts

Authorization

User API Key
AuthorizationBearer <token>

User API key (mgw_usr_live_* or mgw_usr_test_*)

In: header

access_token?|

Response Body

application/json

application/json

curl -X GET "https://loading/api/v1/settings/prompts"
{
  "items": [
    {
      "slug": "string",
      "description": "string",
      "category": "string",
      "has_override": true,
      "is_active": true,
      "variables": [
        "string"
      ],
      "updated_at": "string",
      "updated_by": "string"
    }
  ]
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}