(loc: Location)
| 210 | } |
| 211 | |
| 212 | printConfig(loc: Location): string { |
| 213 | const target = mcpJsonPath(loc); |
| 214 | const snippet = JSON.stringify({ mcpServers: { codegraph: getMcpServerConfig() } }, null, 2); |
| 215 | return `# Add to ${target}\n\n${snippet}\n`; |
| 216 | } |
| 217 | |
| 218 | describePaths(loc: Location): string[] { |
| 219 | return [mcpJsonPath(loc), settingsJsonPath(loc), instructionsPath(loc)]; |
nothing calls this directly
no test coverage detected