wakit
AI Agents

Tools

Built-in tools available for AI agents.

wakit agents can use built-in tools to interact with external services and data.

Available tools

ToolDescription
MCP ClientConnect to any MCP-compatible tool server
SQL ClientQuery databases directly from agent context
HTTP ClientMake API calls to external services
CalculatorBuilt-in math computation via mathjs

MCP Client

Connect your agent to MCP servers for tool access:

{
  "tools": [
    {
      "type": "mcp",
      "config": {
        "url": "https://your-mcp-server.com/mcp",
        "headers": {
          "Authorization": "Bearer {token}"
        }
      }
    }
  ]
}

SQL Client

Let the agent query a database:

{
  "tools": [
    {
      "type": "sql",
      "config": {
        "driver": "postgres",
        "url": "postgresql://user:pass@host:5432/db",
        "read_only": true
      }
    }
  ]
}

HTTP Client

Enable the agent to make HTTP requests:

{
  "tools": [
    {
      "type": "http",
      "config": {
        "base_url": "https://api.example.com",
        "headers": {
          "Authorization": "Bearer {token}"
        }
      }
    }
  ]
}

Calculator

No configuration needed — automatically available when enabled:

{
  "tools": [
    { "type": "calculator" }
  ]
}

On this page