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
| Tool | Description |
|---|---|
| MCP Client | Connect to any MCP-compatible tool server |
| SQL Client | Query databases directly from agent context |
| HTTP Client | Make API calls to external services |
| Calculator | Built-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" }
]
}