← Back to Tool Reference

Toolforest Meta — Tool Reference

System toolkit providing toolkit discovery and metadata

1 tools · auto-generated from the deployed toolkit

Your AI assistant discovers and invokes these tools through the MCP Server's meta tools — it calls execute_tool with the tool name and arguments below.

# list_toolkits read

List all public active toolkits and their descriptions to discover available capabilities in the environment.

Full description
List all available toolkits with their descriptions.

Returns the name and description of every public, active toolkit in the
current environment. Use this to discover what toolkits are available
before calling tools from a specific toolkit.

No parameters.

Parameter schema (JSON)
{
  "description": "Parameters for list_toolkits — no inputs required.",
  "properties": {},
  "title": "ListToolkitsParams",
  "type": "object",
  "additionalProperties": false
}
Result schema (JSON)
{
  "$defs": {
    "ToolkitInfo": {
      "description": "Information about a single toolkit.",
      "properties": {
        "name": {
          "description": "Toolkit identifier (used in tool name prefixes)",
          "title": "Name",
          "type": "string"
        },
        "description": {
          "description": "What this toolkit does",
          "title": "Description",
          "type": "string"
        }
      },
      "required": [
        "name",
        "description"
      ],
      "title": "ToolkitInfo",
      "type": "object"
    }
  },
  "description": "Result of list_toolkits.",
  "properties": {
    "toolkits": {
      "description": "Available toolkits",
      "items": {
        "$ref": "#/$defs/ToolkitInfo"
      },
      "title": "Toolkits",
      "type": "array"
    },
    "count": {
      "description": "Number of toolkits",
      "title": "Count",
      "type": "integer"
    },
    "success": {
      "description": "Whether the registry was loaded successfully",
      "title": "Success",
      "type": "boolean"
    },
    "error": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "Error message if success is false",
      "title": "Error"
    }
  },
  "required": [
    "toolkits",
    "count",
    "success"
  ],
  "title": "ListToolkitsResult",
  "type": "object"
}