Open Issues Need Help
View All on GitHubAI Summary: This issue proposes creating a new data compression handler specifically for GitLab MCP tools. Currently, these tools fall back to a generic JSON handler, but their issue and MR responses have a structure similar to GitHub's, albeit with different field names. The new handler will extract key fields like internal ID, title, state, description excerpt, labels, and web URL, and manage array responses by showing the first ten items plus an overflow count.
Claude Code plugin — compresses MCP tool outputs, stores full results in SQLite, and exposes retrieval tools. Extends sessions from ~30min to ~3h.
AI Summary: This issue proposes creating a dedicated handler for Sentry error events to reduce their size. The current generic JSON handler truncates critical information, so the new handler will extract only essential data like exception type, message, the last 5-10 stack frames, event level, environment, release, and a short URL, while discarding less relevant data like breadcrumbs and full headers. This aims to provide more concise and useful error logs.
Claude Code plugin — compresses MCP tool outputs, stores full results in SQLite, and exposes retrieval tools. Extends sessions from ~30min to ~3h.
AI Summary: The current generic JSON handler poorly displays database query results from `mcp__*` tools, truncating data and losing valuable information. The proposed solution is to implement a dedicated handler for database query results that will extract and display column names, row count, the first 10 rows as `col=value` pairs, and a truncation notice if more rows exist. This handler will need to accommodate various common database response shapes and integrate into the existing dispatcher based on tool names.
Claude Code plugin — compresses MCP tool outputs, stores full results in SQLite, and exposes retrieval tools. Extends sessions from ~30min to ~3h.