For agents
@agentskit/tools — for agents
Built-in executable tools + 20+ third-party integrations + bidirectional MCP bridge.
Install
npm install @agentskit/toolsPrimary exports (main entry)
webSearch,fetchUrl,filesystem,shell— core built-ins.defineZodTool— define tools with Zod schemas.listTools— discovery helper.
Subpath exports
| Subpath | Contents |
|---|---|
@agentskit/tools/mcp | createMcpClient, createMcpServer, toolsFromMcpClient, createStdioTransport, createInMemoryTransportPair. See MCP bridge. |
@agentskit/tools/integrations | github, linear, slack, notion, discord, gmail, googleCalendar, stripe, postgres, s3, firecrawl, reader, documentParsers, openaiImages, elevenlabs, whisper, deepgram, maps, weather, coingecko, browserAgent. See Integrations + More integrations. |
Minimal example
import { webSearch } from '@agentskit/tools'
import { github } from '@agentskit/tools/integrations'
const tools = [
webSearch(),
...github({ token: process.env.GITHUB_TOKEN! }),
]Related
- @agentskit/core/compose-tool — chain tools.
- @agentskit/sandbox — enforce a sandbox policy across tools.
- @agentskit/runtime.