Skip to content
Merged
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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to TokenSaver.Mcp are documented here.

## [1.15.2] — 2026-06-19

### Fixed
- Tool descriptions and the runtime low-saving nudge no longer reference tools removed in
the 3-tool strip. `MinifyFile`, `OutlineCSharpFile`, and the nudge pointed the model at
`focus_method`, and `TraceDiRegistrations` referenced `trace_implementors` — none of which
are registered tools, so a model following that guidance reached for a tool that doesn't
exist and fell back to reading the whole file. They now point at `outline_c_sharp_file`
plus a narrow `Read`. `OutlineCSharpFile` and `MinifyFile` also lead with an imperative
trigger ("call this first before reading a C#/VB file over ~50 lines") so the host model
reaches for them earlier. Descriptions only — no behaviour change (#103).

## [1.15.1] — 2026-06-16

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion mcp/TokenSaver.Mcp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PackAsTool>true</PackAsTool>
<ToolCommandName>tokensaver-mcp</ToolCommandName>
<PackageId>TokenSaver.Mcp</PackageId>
<Version>1.15.1</Version>
<Version>1.15.2</Version>
<Authors>Sebastian Larsson</Authors>
<Description>MCP server for .NET developers — gives AI assistants a token-efficient view of C#, VB, Razor, and .NET project files using the Roslyn compiler platform. Reduces tokens by 50-95% with no loss of logic.</Description>
<PackageTags>mcp;dotnet;csharp;visualbasic;razor;roslyn;copilot;tokens;llm;tokensaver</PackageTags>
Expand Down
4 changes: 2 additions & 2 deletions server.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
"url": "https://github.com/Byggarepop/TokenSaver",
"source": "github"
},
"version": "1.15.1",
"version": "1.15.2",
"packages": [
{
"registryType": "nuget",
"identifier": "TokenSaver.Mcp",
"version": "1.15.1",
"version": "1.15.2",
"runtimeHint": "dnx",
"runtimeArguments": [
{
Expand Down
Loading