Tool details
| Field | Value |
|---|---|
| Name | list_accessible_agents |
| Group | Agents |
Playground
Input schema
input-schema.json
{
"type": "object",
"properties": {
"cursor": {
"type": "string",
"description": "Opaque pagination cursor returned by a previous response."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"description": "Maximum number of results to return."
},
"search": {
"type": "string",
"minLength": 1,
"maxLength": 200,
"description": "Provide the search."
},
"project_reference": {
"type": "string",
"minLength": 1,
"maxLength": 200,
"description": "Project identifier or slug that scopes the tool call."
},
"access": {
"type": "string",
"enum": [
"all",
"project",
"shared"
],
"description": "Provide the access."
},
"kind": {
"type": "string",
"enum": [
"source_project_agent",
"installed_project_agent"
],
"description": "Provide the kind."
},
"runtime_status": {
"type": "string",
"enum": [
"ready",
"offline",
"not_applicable",
"unknown"
],
"description": "Provide the runtime status."
},
"sort": {
"type": "string",
"enum": [
"+name",
"-name",
"+project_name",
"-project_name",
"+updated_at",
"-updated_at"
],
"description": "Provide the sort."
}
},
"additionalProperties": false,
"description": "Input schema for the list_accessible_agents tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
output-schema.json
{
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the record."
},
"agent_id": {
"type": "string",
"description": "The agent id associated with this record."
},
"name": {
"type": "string",
"description": "Human-readable name for the record."
},
"description": {
"type": [
"string",
"null"
],
"description": "Human-readable description for the record."
},
"avatar_url": {
"anyOf": [
{
"type": "string",
"format": "uri",
"description": "The avatar url associated with this record."
},
{
"type": "null",
"description": "The avatar url returned by the tool."
}
],
"description": "The avatar url associated with this record."
},
"kind": {
"type": "string",
"enum": [
"source_project_agent",
"installed_project_agent"
],
"description": "The kind associated with this record."
},
"source_type": {
"type": "string",
"enum": [
"project",
"catalog_install"
],
"description": "The source type associated with this record."
},
"can_run": {
"type": "boolean",
"const": true,
"description": "The can run associated with this record."
},
"provider": {
"type": "object",
"properties": {
"organization": {
"type": "string",
"description": "The organization associated with this record."
},
"url": {
"type": "string",
"description": "The url associated with this record."
}
},
"required": [
"organization",
"url"
],
"additionalProperties": false,
"description": "Structured provider details associated with this record."
},
"version": {
"type": "string",
"description": "The version associated with this record."
},
"capabilities": {
"type": "object",
"properties": {
"streaming": {
"type": "boolean",
"description": "The streaming associated with this record."
},
"push_notifications": {
"type": "boolean",
"description": "The push notifications associated with this record."
},
"extensions": {
"type": "array",
"items": {
"type": "string",
"description": "One extension item associated with this record."
},
"description": "List of extensions associated with this record."
}
},
"required": [
"streaming",
"push_notifications",
"extensions"
],
"additionalProperties": false,
"description": "Structured capabilities details associated with this record."
},
"default_input_modes": {
"type": "array",
"items": {
"type": "string",
"description": "One default input mode item associated with this record."
},
"description": "List of default input modes associated with this record."
},
"default_output_modes": {
"type": "array",
"items": {
"type": "string",
"description": "One default output mode item associated with this record."
},
"description": "List of default output modes associated with this record."
},
"tools": {
"type": "array",
"items": {
"type": "string",
"description": "One tool item associated with this record."
},
"description": "List of tools associated with this record."
},
"skills": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the record."
},
"name": {
"type": "string",
"description": "Human-readable name for the record."
},
"description": {
"type": "string",
"description": "Human-readable description for the record."
},
"tags": {
"type": "array",
"items": {
"type": "string",
"description": "One tag item associated with this record."
},
"description": "The tags associated with this record."
},
"examples": {
"type": "array",
"items": {
"type": "string",
"description": "One example item associated with this record."
},
"description": "The examples associated with this record."
}
},
"required": [
"id",
"name"
],
"additionalProperties": false,
"description": "One skill item associated with this record."
},
"description": "List of skills associated with this record."
},
"suggestions": {
"anyOf": [
{
"type": "array",
"items": {
"anyOf": [
{
"type": "string",
"minLength": 1,
"description": "The option 1 associated with this record."
},
{
"type": "object",
"properties": {
"title": {
"type": "string",
"minLength": 1,
"description": "Short human-readable title for the record."
},
"prompt": {
"type": "string",
"minLength": 1,
"description": "The prompt associated with this record."
}
},
"required": [
"title",
"prompt"
],
"additionalProperties": false,
"description": "Structured option 2 details associated with this record."
}
],
"description": "One suggestion item associated with this record."
},
"description": "List of suggestions associated with this record."
},
{
"type": "null",
"description": "The suggestions returned by the tool."
}
],
"description": "List of suggestions associated with this record."
},
"project": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "Unique identifier for the record."
},
"reference": {
"type": "string",
"description": "The reference associated with this record."
},
"name": {
"type": "string",
"description": "Human-readable name for the record."
}
},
"required": [
"id",
"reference",
"name"
],
"additionalProperties": false,
"description": "Structured project details associated with this record."
},
"access": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"project",
"project_install",
"shared"
],
"description": "The type associated with this record."
},
"relation": {
"type": "string",
"enum": [
"owner",
"admin",
"editor",
"viewer"
],
"description": "The relation associated with this record."
}
},
"required": [
"type",
"relation"
],
"additionalProperties": false,
"description": "Structured access details associated with this record."
},
"runtime_readiness": {
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"ready",
"offline",
"not_applicable",
"unknown"
],
"description": "Lifecycle status for the record."
},
"reason": {
"type": [
"string",
"null"
],
"description": "The reason associated with this record."
},
"runtime_target_kind": {
"anyOf": [
{
"type": "string",
"enum": [
"registered_push_service",
"pull_worker"
],
"description": "The runtime target kind associated with this record."
},
{
"type": "null",
"description": "The runtime target kind returned by the tool."
}
],
"description": "The runtime target kind associated with this record."
},
"runtime_service_key": {
"type": [
"string",
"null"
],
"description": "The runtime service key associated with this record."
}
},
"required": [
"status",
"reason",
"runtime_target_kind",
"runtime_service_key"
],
"additionalProperties": false,
"description": "Structured runtime readiness details associated with this record."
},
"model": {
"type": [
"string",
"null"
],
"description": "AI model id or alias. Call list_models for the ids this deployment serves; never invent a version suffix."
},
"url": {
"type": "string",
"description": "The url associated with this record."
}
},
"required": [
"id",
"agent_id",
"name",
"description",
"avatar_url",
"kind",
"source_type",
"can_run",
"provider",
"version",
"capabilities",
"default_input_modes",
"default_output_modes",
"tools",
"skills",
"suggestions",
"project",
"access",
"runtime_readiness",
"model",
"url"
],
"additionalProperties": false,
"description": "Structured accessible agent output schema for MCP tools."
},
"description": "Primary record collection."
},
"page_info": {
"type": "object",
"properties": {
"self": {
"type": [
"string",
"null"
],
"description": "Cursor that refers to the current page."
},
"first": {
"type": "object",
"description": "The first associated with this record."
},
"next": {
"type": [
"string",
"null"
],
"description": "Cursor for the next page."
},
"prev": {
"type": [
"string",
"null"
],
"description": "Cursor for the previous page."
}
},
"required": [
"self",
"first",
"next",
"prev"
],
"additionalProperties": false,
"description": "Pagination cursor values for traversing the result set."
}
},
"required": [
"data",
"page_info"
],
"additionalProperties": false,
"description": "Structured list accessible agents output schema for MCP tools.",
"$schema": "http://json-schema.org/draft-07/schema#"
}