> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kubiya.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Built-in Tools Overview

> Comprehensive reference for all built-in tools available to the Meta Agent, including platform tools, connector-based integrations, and sandboxed execution capabilities.

The Meta Agent has access to a rich set of built-in tools that enable it to interact with the Kubiya platform, external services, and execute code safely.

<img className="block dark:hidden" src="https://mintcdn.com/kubiya/_Gg1nc0dFBO6EoNF/assets/screenshots/composer/meta-agent-connectors-full-list.png?fit=max&auto=format&n=_Gg1nc0dFBO6EoNF&q=85&s=23f209162cd466b7c427fb5785a2acee" alt="All Available Connectors in Meta Agent" width="2584" height="1480" data-path="assets/screenshots/composer/meta-agent-connectors-full-list.png" />

<img className="hidden dark:block" src="https://mintcdn.com/kubiya/_Gg1nc0dFBO6EoNF/assets/screenshots/composer/meta-agent-connectors-full-list.png?fit=max&auto=format&n=_Gg1nc0dFBO6EoNF&q=85&s=23f209162cd466b7c427fb5785a2acee" alt="All Available Connectors in Meta Agent" width="2584" height="1480" data-path="assets/screenshots/composer/meta-agent-connectors-full-list.png" />

## Tool Categories

| Category                                                                 | Description                     | Examples                                |
| ------------------------------------------------------------------------ | ------------------------------- | --------------------------------------- |
| **[Platform Tools](/core-concepts/meta-agent/tools/platform)**           | Core Kubiya platform operations | Agents, Teams, Environments, Executions |
| **[Context Graph](/core-concepts/meta-agent/tools/context-graph)**       | Knowledge graph operations      | Schema, Queries, Node creation          |
| **[Cognitive Memory](/core-concepts/meta-agent/tools/cognitive-memory)** | Organizational memory access    | Search, Store, Recall                   |
| **[Task Management](/core-concepts/meta-agent/tools/task-management)**   | Task tracking and execution     | Create, Update, Monitor                 |
| **[Connector Tools](/core-concepts/meta-agent/tools/connectors)**        | External service integrations   | GitHub, AWS, Slack, JIRA                |
| **[Sandboxed Execution](/core-concepts/meta-agent/tools/sandbox)**       | Safe code execution             | Python, Shell, Docker                   |

***

## How Tools Work

When you interact with the Meta Agent, tools are invoked transparently through the MCP (Model Context Protocol):

```mermaid theme={null}
sequenceDiagram
    participant User
    participant MetaAgent
    participant MCP Server
    participant Tool

    User->>MetaAgent: Natural language request
    MetaAgent->>MetaAgent: Analyze intent
    MetaAgent->>MCP Server: Tool invocation
    MCP Server->>Tool: Execute operation
    Tool-->>MCP Server: Results
    MCP Server-->>MetaAgent: Structured response
    MetaAgent->>User: Formatted answer
```

## Enabling Connectors

To access connector-based tools, enable them in the chat interface:

1. Click the **connectors menu** (plug icon) in the input bar
2. Select the connectors you need from the dropdown
3. Some connectors may require initial setup (OAuth flow, API keys, etc.)
4. Once enabled, the Meta Agent will have access to those tools for the conversation

<Tip>
  You can enable multiple connectors simultaneously. The Meta Agent will automatically use the appropriate connector based on your request.
</Tip>

## What's Next

Explore each tool category to learn about available capabilities:

* **[Platform Tools](/core-concepts/meta-agent/tools/platform)** - Manage agents, teams, environments, and executions
* **[Context Graph Tools](/core-concepts/meta-agent/tools/context-graph)** - Query and modify the knowledge graph
* **[Cognitive Memory Tools](/core-concepts/meta-agent/tools/cognitive-memory)** - Access organizational memory
* **[Task Management Tools](/core-concepts/meta-agent/tools/task-management)** - Create and track tasks
* **[Connector Tools](/core-concepts/meta-agent/tools/connectors)** - Integrate with external services
* **[Sandboxed Execution](/core-concepts/meta-agent/tools/sandbox)** - Execute code safely
