get_hex_project
Retrieve details of a specific Hex project by providing its UUID. Returns JSON with project information, facilitating access and management through the Hex API MCP Server.
Instructions
Get details about a specific Hex project.
Args:
project_id: The UUID of the Hex project
Returns:
JSON string with project details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id"
],
"title": "get_hex_projectArguments",
"type": "object"
}