Docs

Docs

x-cpod-domain: apps

Apps

App identity registry — register application identities and manage MCP tool registrations per app.

Try in explorer client.apps

App

A registered application identity with its own app_id used for MCP tool registration.

REST path/api/v1/apps
Operations
registermeregisterToolslistTools
SDK
// list — returns only your records; add filters/search:
await client.apps.list()
FieldTypeDescription
app_id*uuidPlatform-assigned application identity.
name*stringApplication name.
descriptionstringApplication description and capabilities.
statusenumApplication status.activeinactiverevoked
created_at*date-timeRegistration timestamp.

AppMcpTool

An MCP tool registered under an application identity.

REST path/api/v1/apps/{appId}/mcp/tools
Operations
registerToolslistTools
SDK
// list — returns only your records; add filters/search:
await client.apps.list()
FieldTypeDescription
name*stringTool name (unique per app).
description*stringTool description for LLM consumption.
endpoint*stringREST endpoint this tool proxies.
method*enumHTTP method.GETPOSTPUTPATCHDELETE
input_schemajsonJSON Schema for tool input arguments.