curl --request GET \
--url https://api.gptmaker.ai/v2/mcp/{mcpId}/tools \
--header 'Authorization: Bearer <token>'
[
{
"id": "<string>",
"tenant": "<string>",
"tenantOwner": "<string>",
"createdAt": 123,
"updatedAt": 123,
"integrationId": "<string>",
"agentId": "<string>",
"active": true,
"name": "<string>",
"description": "<string>",
"inputSchema": {
"type": "<string>",
"$schema": "<string>",
"properties": {},
"additionalProperties": true
}
}
]
Lista as ferramentas de um MCP específico
curl --request GET \
--url https://api.gptmaker.ai/v2/mcp/{mcpId}/tools \
--header 'Authorization: Bearer <token>'
[
{
"id": "<string>",
"tenant": "<string>",
"tenantOwner": "<string>",
"createdAt": 123,
"updatedAt": 123,
"integrationId": "<string>",
"agentId": "<string>",
"active": true,
"name": "<string>",
"description": "<string>",
"inputSchema": {
"type": "<string>",
"$schema": "<string>",
"properties": {},
"additionalProperties": true
}
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
ID do MCP
Configurações listadas com sucesso
The response is of type object[]
.