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
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes |
Implementation Reference
- src/hex_mcp/server.py:161-173 (handler)The handler function for the 'get_hex_project' tool. It is decorated with @mcp.tool() which registers it in the FastMCP server. Fetches and returns the project details from the Hex API.@mcp.tool() async def get_hex_project(project_id: str) -> str: """Get details about a specific Hex project. Args: project_id: The UUID of the Hex project Returns: JSON string with project details """ project = await hex_request("GET", f"/projects/{project_id}") return project