feat(mcp): inventory MCP servers in ~/.claude.json#42
Merged
Conversation
Claude Code stores user-scoped MCP servers in the top-level mcpServers map of ~/.claude.json and local-scoped ones under projects.<dir>.mcpServers. The scanner missed this file entirely: it is a single config file beside the .claude directory, so no walk root reached it, and its basename was not in the MCP dispatch allowlist. Add ~/.claude.json as a baseline MCP root (so --all-users expansion covers it), let filterExistingRoots keep regular-file roots, dispatch it via a path-aware IsClaudeConfigJSON, and parse both scopes in a dedicated ScanClaudeConfig that ignores the file's unrelated settings. Fixes #40
kyle-pplx
approved these changes
May 29, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Claude Code stores user-scoped MCP servers in the top-level
mcpServersmap of~/.claude.jsonand local-scoped ones underprojects.<dir>.mcpServers. The scanner missed this file because it sits beside the.claudedirectory (no walk root reached it) and its basename wasn't dispatched. This adds it as a baseline MCP root, dispatches it via a path-aware check, and parses both scopes while ignoring the file's unrelated settings.Fixes #40