Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v1.0.89 Home All releases olderv1.0.88 v1.0.90newer
Claude Code v1.0.89

Debug Output Filtering

What: Filter debug messages by category using --debug=pattern syntax How to use:

# Show only MCP-related debug messages
claude --debug=mcp <command>

# Show all debug messages except verbose ones
claude --debug=!verbose <command>

# Show multiple specific categories
claude --debug=mcp,server1,api <command>

Details:

  • Supports both include patterns (show only these) and exclude patterns with ! prefix (hide these)
  • Automatically categorizes messages based on prefixes, MCP server names, and other patterns
  • Cannot mix include and exclude patterns in the same filter
  • Helps reduce noise when debugging specific components

See this entry in the whole of v1.0.89 →