(loc: Location)
| 149 | } |
| 150 | |
| 151 | printConfig(loc: Location): string { |
| 152 | const target = mcpJsonPath(loc); |
| 153 | const snippet = JSON.stringify({ mcpServers: { codegraph: buildCursorMcpConfig(loc) } }, null, 2); |
| 154 | return `# Add to ${target}\n\n${snippet}\n`; |
| 155 | } |
| 156 | |
| 157 | describePaths(loc: Location): string[] { |
| 158 | return loc === 'local' |
nothing calls this directly
no test coverage detected