tools-and-context

Installation
SKILL.md

Tools and Context

Gives Tambo access to data and capabilities through tools, MCP servers, and context.

Quick Start

// Custom tool Tambo can call
const fetchUserTool = defineTool({
  name: "fetchUser",
  description: "Fetch user by ID",
  inputSchema: z.object({ userId: z.string() }),
  tool: async ({ userId }) => fetchUser(userId),
});

<TamboProvider tools={[fetchUserTool]}>
  <App />
</TamboProvider>;
Related skills

More from tambo-ai/tambo

Installs
97
Repository
tambo-ai/tambo
GitHub Stars
11.2K
First Seen
Feb 5, 2026