PluginBench
MCP Server
Active
MIT

TokenSaver MCP Server

io.github.Byggarepop/tokensaver

What is the TokenSaver MCP server?

Structural warm start for AI coding agents in .NET: cheap Roslyn signature maps of C#/.NET files.

How to install TokenSaver

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • TOKENSAVER_API_URL

    URL of the TokenSaver reporting dashboard. Defaults to https://tokensavermcp.com.

  • TOKENSAVER_NO_TELEMETRY

    Set to 1 to opt out of anonymous usage telemetry.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "tokensaver": {
      "command": "dnx",
      "args": [
        "TokenSaver.Mcp",
        "--yes"
      ],
      "env": {
        "TOKENSAVER_API_URL": "<YOUR_TOKENSAVER_API_URL>",
        "TOKENSAVER_NO_TELEMETRY": "<YOUR_TOKENSAVER_NO_TELEMETRY>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "tokensaver": {
      "command": "dnx",
      "args": [
        "TokenSaver.Mcp",
        "--yes"
      ],
      "env": {
        "TOKENSAVER_API_URL": "<YOUR_TOKENSAVER_API_URL>",
        "TOKENSAVER_NO_TELEMETRY": "<YOUR_TOKENSAVER_NO_TELEMETRY>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "tokensaver": {
      "command": "dnx",
      "args": [
        "TokenSaver.Mcp",
        "--yes"
      ],
      "env": {
        "TOKENSAVER_API_URL": "<YOUR_TOKENSAVER_API_URL>",
        "TOKENSAVER_NO_TELEMETRY": "<YOUR_TOKENSAVER_NO_TELEMETRY>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "tokensaver": {
      "type": "stdio",
      "command": "dnx",
      "args": [
        "TokenSaver.Mcp",
        "--yes"
      ],
      "env": {
        "TOKENSAVER_API_URL": "<YOUR_TOKENSAVER_API_URL>",
        "TOKENSAVER_NO_TELEMETRY": "<YOUR_TOKENSAVER_NO_TELEMETRY>"
      }
    }
  }
}
Claude Code
claude mcp add tokensaver --env TOKENSAVER_API_URL=<YOUR_TOKENSAVER_API_URL> --env TOKENSAVER_NO_TELEMETRY=<YOUR_TOKENSAVER_NO_TELEMETRY> -- dnx TokenSaver.Mcp --yes

Related MCP servers

Route one agent through one MCP server to many, with progressive tool discovery to shrink context.

1
C#
MIT
View repository →