agentskit.js
Packages

@agentskit/tools

Built-in tools + 20 third-party integrations + bidirectional MCP bridge.

When to reach for it

  • You need ready-made tools (web search, file I/O, shell).
  • You want GitHub / Linear / Slack / Notion / Stripe / Postgres / S3 / …
  • You want to speak MCP (consume or publish).

Install

npm install @agentskit/tools

Hello world

import { webSearch, fetchUrl } from '@agentskit/tools'
import { github } from '@agentskit/tools/integrations'
import { createRuntime } from '@agentskit/runtime'

const tools = [
  webSearch(),
  fetchUrl(),
  ...github({ token: process.env.GITHUB_TOKEN! }),
]
const runtime = createRuntime({ adapter, tools })

Surface

  • Main: webSearch · fetchUrl · filesystem · shell · defineZodTool.
  • /integrations: github · linear · slack · notion · discord · gmail · googleCalendar · stripe · postgres · s3 · firecrawl · reader · documentParsers · openaiImages · elevenlabs · whisper · deepgram · maps · weather · coingecko · browserAgent.
  • /mcp: createMcpClient · createMcpServer · toolsFromMcpClient · createStdioTransport · createInMemoryTransportPair.

Recipes

Source

npm: @agentskit/tools · repo: packages/tools

✎ Edit this page on GitHub·Found a problem? Open an issue →·How to contribute →

On this page