mcp-config-manager 1.0.8 → 1.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/package.json +1 -1
- package/src/clients.js +9 -0
package/README.md
CHANGED
|
@@ -151,13 +151,14 @@ This tool supports auto-detection of any client that follows the Model Context P
|
|
|
151
151
|
- **Claude Desktop**: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
152
152
|
- **Claude Code**: `~/.claude.json` (global settings and MCP servers)
|
|
153
153
|
- **Cline**: `~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`
|
|
154
|
+
- **Codex**: `~/.codex/config.toml` (TOML with `[mcp_servers.<name>]` tables)
|
|
154
155
|
- **Cursor**: `.cursor/mcp.json` (project-specific) or `~/.cursor/mcp.json` (global)
|
|
155
156
|
- **Factory Bridge**: `~/Library/Application Support/Factory Bridge/mcp.json`
|
|
156
157
|
- **Gemini**: `~/.gemini/settings.json`
|
|
158
|
+
- **Google AntiGravity**: `~/.gemini/antigravity/mcp_config.json`
|
|
157
159
|
- **Roo Code**: `~/Library/Application Support/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_mcp_settings.json`
|
|
158
160
|
- **VS Code**: `.vscode/mcp.json`
|
|
159
161
|
- **Windsurf**: `~/.codeium/windsurf/mcp_config.json` or `~/AppData/Roaming/WindSurf/mcp_settings.json` (Windows)
|
|
160
|
-
- **Codex**: `~/.codex/config.toml` (TOML with `[mcp_servers.<name>]` tables)
|
|
161
162
|
|
|
162
163
|
*Note: Paths may vary based on your operating system. The tool will attempt to find the correct path automatically.*
|
|
163
164
|
|
package/package.json
CHANGED
package/src/clients.js
CHANGED
|
@@ -118,5 +118,14 @@ export const CLIENTS = {
|
|
|
118
118
|
linux: path.join(os.homedir(), '.config/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/cline_mcp_settings.json')
|
|
119
119
|
},
|
|
120
120
|
format: 'mcpServers'
|
|
121
|
+
},
|
|
122
|
+
'google-antigravity': {
|
|
123
|
+
name: 'Google AntiGravity',
|
|
124
|
+
configPaths: {
|
|
125
|
+
darwin: path.join(os.homedir(), '.gemini/antigravity/mcp_config.json'),
|
|
126
|
+
win32: path.join(os.homedir(), '.gemini/antigravity/mcp_config.json'),
|
|
127
|
+
linux: path.join(os.homedir(), '.gemini/antigravity/mcp_config.json')
|
|
128
|
+
},
|
|
129
|
+
format: 'mcpServers'
|
|
121
130
|
}
|
|
122
131
|
};
|