Mastra

Integrations › Mastra

Tool package

@keenable/mastra — keenable-search and keenable-fetch tools for any Mastra agent, keyless by default.

npm install, then createKeenableTools().keenableSearch returns live web results in Node.

Setup

  1. 1Install
    bash
    npm install @keenable/mastra
  2. 2Use the tools

    @mastra/core and zod are peer deps (already present in a Mastra project).

    typescript
    import { createKeenableTools } from "@keenable/mastra";
    
    const tools = createKeenableTools(); // keyless; or { apiKey: "keen_..." }
    // exposes the tools `keenable-search` and `keenable-fetch`

Keyless by default; set KEENABLE_API_KEY or pass { apiKey } to authenticate.

@keenable/mastra on npm →