Technical Reference
Tool definitions
When a source is uploaded to the platform — an OpenAPI document, a Gram Function, or an external MCP server — a deployment is created and processed. During processing, every operation defined in the source is converted into a corresponding tool definition. For an OpenAPI document, that’s every operation in the document. For a Gram Function, it’s every tool declared in the function manifest.

Tool definitions contain both the metadata needed to describe a tool to an LLM and the configuration the platform uses to execute the tool, such as how to construct the corresponding HTTP request to an API.
When creating toolsets, select the relevant tool definitions to include, then invoke them through the Playground, the SDK, or an MCP server. To build and proxy the HTTP request to the appropriate endpoint, the platform combines the tool definition with the selected environment. Each project starts with an environment named Default.
Tool kinds and URNs
Section titled “Tool kinds and URNs”Every tool definition is identified by a URN in the format tools:<kind>:<source>:<name>. The kind reflects how the tool executes:
http— generated from an OpenAPI operation and executed as an HTTP request to the APIfunction— backed by a Gram Functionexternalmcp— proxied to a third-party MCP server added from the catalog or registered by URLtunneledmcp— proxied to a private MCP server connected through a tunnelprompt— a prompt template exposed as a toolplatform— a built-in platform tool
Tool URNs appear in the API and SDK when curating tools into toolsets.