A self-hosted MCP server (Go) that reduces AI context window usage by sandboxing large tool outputs and returning compact summaries instead of raw text.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"ctx-saver": {
"command": "go",
"args": [
"run",
"github.com/ChonlakanSutthimatmongkhol/ctx-saver@latest"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add ctx-saver go run github.com/ChonlakanSutthimatmongkhol/ctx-saver@latest
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"ctx-saver": {
"command": "go",
"args": [
"run",
"github.com/ChonlakanSutthimatmongkhol/ctx-saver@latest"
]
}
}
}
📋 Copy