StrandsAgents.Tools 0.1.5

dotnet add package StrandsAgents.Tools --version 0.1.5
                    
NuGet\Install-Package StrandsAgents.Tools -Version 0.1.5
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="StrandsAgents.Tools" Version="0.1.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="StrandsAgents.Tools" Version="0.1.5" />
                    
Directory.Packages.props
<PackageReference Include="StrandsAgents.Tools" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add StrandsAgents.Tools --version 0.1.5
                    
#r "nuget: StrandsAgents.Tools, 0.1.5"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package StrandsAgents.Tools@0.1.5
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=StrandsAgents.Tools&version=0.1.5
                    
Install as a Cake Addin
#tool nuget:?package=StrandsAgents.Tools&version=0.1.5
                    
Install as a Cake Tool

StrandsAgents.Tools

Built-in tools for Strands Agents .NET agents.

dotnet add package StrandsAgents.Tools
Tool Description
CalculatorTool Safe arithmetic evaluation
FileReadTool(basePath) Sandboxed file reads — rejects path traversal
FileWriteTool(basePath) Sandboxed file writes and appends
HttpRequestTool GET / POST via HttpClient
McpToolProvider Connect any MCP server (stdio or SSE)
using StrandsAgents.Core;
using StrandsAgents.Tools;

// Calculator
var agent = new Agent(model, tools: [new CalculatorTool_Calculate_Tool(new CalculatorTool())]);

// MCP
await using var mcp = await McpToolProvider.CreateForStdioAsync(
    "npx", ["-y", "@modelcontextprotocol/server-filesystem", "/tmp"]);
var agent = new Agent(model, tools: await mcp.GetToolsAsync());
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on StrandsAgents.Tools:

Package Downloads
Strands.Tools

Deprecated. This package has been renamed to StrandsAgents.Tools. Please update your PackageReference. The old name will stop receiving updates after November 2025.

StrandsAgents.Extensions.DI

Microsoft.Extensions.DependencyInjection integration for Strands Agents .NET. Register agents, models, and tools with AddBedrockModel() and AddStrandsAgent() for use in ASP.NET, Worker Services, Lambda, and any .NET host.

StrandsAgents.Runtime

Amazon Bedrock AgentCore integration for Strands Agents .NET. Provides a hosting wrapper to deploy any Strands Agents .NET agent to AgentCore Runtime, plus optional managed service tools (Memory, Browser, Code Interpreter). Your agent code is completely unchanged — only the hosting changes. This package is optional — Strands Agents .NET works fully without it.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.5 48 5/9/2026
0.1.4 55 5/9/2026