Composway Docs
Tool reference

Who am I

Return the authenticated user's Kinde claims (sub, email, name).

Tool name: whoami

Cost: Free - not billed, and does not draw on a plan quota.

Read-only

This tool only reads. It never creates or changes anything, so an assistant may call it without asking you first.

Return the authenticated user's Kinde claims (sub, email, name).

Parameters

This tool takes no parameters.

Full input JSON Schema
{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"type": "object",
	"properties": {}
}

Response

Full output JSON Schema
{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"type": "object",
	"properties": {
		"sub": {
			"type": "string"
		},
		"email": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"type": "null"
				}
			]
		},
		"name": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"type": "null"
				}
			]
		}
	},
	"additionalProperties": false
}

On this page