Documentation Index
Fetch the complete documentation index at: https://hybridbox.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
MCP guide
Hybridbox exposes a production Model Context Protocol endpoint athttps://hybridbox.io/mcp for MCP clients that want to discover and execute Hybridbox pseudo-functions.
1. Connect to the MCP endpoint
MCP traffic uses JSON-RPC over HTTP POST.initialize, the server advertises MCP capabilities for tool calls.
Supported JSON-RPC methods include:
initializepingnotifications/initializedtools/listtools/call
2. Authenticate the MCP client
MCP clients authenticate with a bearer access token. If a request is missing a valid token, the endpoint returns401 Unauthorized with a WWW-Authenticate challenge that points to the protected-resource metadata.
Discover the MCP protected resource metadata:
3. List MCP tools
Calltools/list after authentication. The main Hybridbox tools are:
| Tool | Purpose |
|---|---|
hybridbox_functions_list | List visible pseudo-functions. |
hybridbox_functions_explain | Explain one or more visible pseudo-functions. |
hybridbox_execute | Execute one or more pseudo-functions with code mode. |
4. Execute code with hybridbox_execute
hybridbox_execute takes a required code string and runs one or more Hybridbox pseudo-function calls.
MCP request:
- one function call per line
- variables and expression reuse
ifstatementsforloopsrange(...)- sequential execution in source order
responses[] for every function call and result.last_value for the final successful call.
Function catalog
Open the function catalog when you need callable names, compact signatures, arguments, return fields, auth metadata, and public API route mappings.A2A function catalog
Browse generated function references by domain.