Skip to main content
GET
/
mcp
/
tools
List MCP tools
curl --request GET \
  --url https://app.myhero.so/mcp/tools \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "tools": [
      {
        "name": "<string>",
        "description": "<string>",
        "parameters": {},
        "annotations": {
          "readOnlyHint": false,
          "destructiveHint": false,
          "idempotentHint": false,
          "openWorldHint": false
        }
      }
    ],
    "instructions": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.myhero.so/llms.txt

Use this file to discover all available pages before exploring further.

Returns the catalog of MCP tools available to the authenticated user along with system instructions. Each tool entry includes its name, description, JSON-Schema parameters, and behavior annotations. Requires OAuth authentication.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Response

200 response

data
object
required