MCP Gateway
ApiCurated apps

Get Curated App

Get full detail for a single curated app catalog entry. Args: entry_id: UUID of the catalog entry. session: Database session (injected). service: CuratedAppService instance (injected). Returns: Full detail including auth, config, tools preview, etc. Raises: HTTPException: 404 if entry not found.

GET
/api/v1/curated-apps/{entry_id}

Authorization

User API Key
AuthorizationBearer <token>

User API key (mgw_usr_live_* or mgw_usr_test_*)

In: header

Path Parameters

entry_id*string
Formatuuid
access_token?|

Response Body

application/json

application/json

curl -X GET "https://loading/api/v1/curated-apps/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "name": "string",
  "display_name": "string",
  "category": "string",
  "description": "string",
  "icon_url": "string",
  "type": "remote",
  "credential_mode": "managed",
  "auth_type": "none",
  "tools_count": 0,
  "tags": [
    "string"
  ],
  "auth": {},
  "config": {},
  "tools_preview": [
    {}
  ],
  "security_pipeline": {},
  "metadata": {}
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}