MCP Gateway
ApiCredential requirements

Analyze credential requirements

Analyze a new input (npm package, PyPI package, URL, Docker image) to discover credential requirements using AI. Returns SSE stream with progress events.

POST
/api/v1/servers/analyze-requirements

Authorization

User API Key
AuthorizationBearer <token>

User API key (mgw_usr_live_* or mgw_usr_test_*)

In: header

access_token?|

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://loading/api/v1/servers/analyze-requirements" \  -H "Content-Type: application/json" \  -d '{    "input": "string"  }'
null
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}