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/toolsHello 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
- Integrations
- More integrations (scraping / voice / maps / browser)
- MCP bridge
- Tool composer
- Confirmation-gated tool
- Mandatory sandbox
Related
Source
npm: @agentskit/tools · repo: packages/tools