Add comprehensive MCP tools for inventory management: - list_suppliers, add_supplier - list_materials, add_material, search_materials - list_stock_items, add_stock_item - list_supplier_offerings, add_supplier_offering - add_stock_with_offering (convenience method) Features: - Dimension-based material search with tolerance - Auto-generate size strings from dimensions - Parse size strings to typed dimensions - Type/Grade support for material categorization Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
605 B
XML
21 lines
605 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CutList.Core\CutList.Core.csproj" />
|
|
<ProjectReference Include="..\CutList.Web\CutList.Web.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.2" />
|
|
<PackageReference Include="ModelContextProtocol" Version="0.7.0-preview.1" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|