Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions agents-docs/content/typescript-sdk/cli-reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -884,6 +884,10 @@ inkeep add
# Add a project template
inkeep add --project activities-planner


# Add the offline-friendly template (no external MCP dependencies)
inkeep add --project activities-planner-solo

# Add project template to specific path
inkeep add --project activities-planner --target-path ./examples

Expand Down
4 changes: 4 additions & 0 deletions agents-docs/content/typescript-sdk/tools/function-tools.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ Function tools are perfect for:
- **API integrations** - Make HTTP calls to services that don't have MCP servers
- **Utility functions** - Create reusable helper functions for your agents

<Tip>
For a complete working example using function tools, see the `activities-planner-solo` template. Add it with `inkeep add --project activities-planner-solo`. This template demonstrates function tools with deterministic mock data, ideal for offline or sandboxed environments.
</Tip>

## Creating Function Tools

### Basic Function Tool
Expand Down