curl --location 'https://api.hiveflow.ai/api/api/mcp/servers//tools' \
--header 'Authorization: Bearer <token>'{
"success": true,
"tools": [
{
"name": "read_file",
"description": "Lee el contenido de un archivo",
"inputSchema": {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "Ruta del archivo a leer"
}
},
"required": [
"path"
]
}
},
{
"name": "write_file",
"description": "Escribe contenido a un archivo",
"inputSchema": {
"type": "object",
"properties": {
"path": {
"type": "string"
},
"content": {
"type": "string"
}
},
"required": [
"path",
"content"
]
}
}
]
}