Tool Registry Kit

Browse, search, and test all registered agent tools with schema validation and live testing.

web-search

Search the web using Brave Search API

v2.1.0

Avg Latency

1850ms

Success Rate

94.2%

Params

2

Parameters

querystringrequired
maxResultsnumber

Test Tool

Integration Code

import { createRegistry } from 'agent-tools-kit/tooling'

const registry = createRegistry()

registry.register({
  name: 'web-search',
  description: 'Search the web using Brave Search API',
  version: '2.1.0',
  parameters: z.object({
    query: z.string(),
    maxResults: z.string().optional(),
  }),
  execute: async (params) => {
    // Your implementation here
    return { result: 'done' }
  },
})

// Discover and execute tools
const tools = registry.list({ category: 'retrieval' })
const result = await registry.execute('web-search', { query: 'value' })