Execute MCP Tool
Execute a specific MCP tool with provided parameters.
### Parameters
- `tool`: Tool name (path parameter)
### Request Body
Tool-specific parameters as JSON object.
Refer to tool schema for required parameters.
### Example
```bash
POST /mcp/execute/search_hotels
Content-Type: application/json
{
"query": "luxury hotels in dubai",
"limit": 10
}
```
