Skip to main content
Glama

list_hex_projects

Retrieve all production Hex projects available through the MCP server. Returns a JSON list of projects with pagination support.

Instructions

List all available Hex projects that are in production.

Returns: JSON string with list of projects

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
offsetNo

Implementation Reference

  • The handler function for the 'list_hex_projects' tool. It makes a GET request to the Hex API /projects endpoint with pagination parameters and returns the list of projects as JSON string. Registered via @mcp.tool() decorator.
    @mcp.tool() async def list_hex_projects(limit: int = 25, offset: int = 0) -> str: """List all available Hex projects that are in production. Returns: JSON string with list of projects """ params = {"limit": limit, "offset": offset} projects = await hex_request("GET", "/projects", params=params) return projects["values"]

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/franccesco/hex-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server