()
| 51 | } |
| 52 | |
| 53 | func (r *RootCmd) mcpConfigure() *serpent.Command { |
| 54 | cmd := &serpent.Command{ |
| 55 | Use: "configure", |
| 56 | Short: "Automatically configure the MCP server.", |
| 57 | Handler: func(i *serpent.Invocation) error { |
| 58 | return i.Command.HelpHandler(i) |
| 59 | }, |
| 60 | Children: []*serpent.Command{ |
| 61 | r.mcpConfigureClaudeDesktop(), |
| 62 | mcpConfigureClaudeCode(), |
| 63 | r.mcpConfigureCursor(), |
| 64 | }, |
| 65 | } |
| 66 | return cmd |
| 67 | } |
| 68 | |
| 69 | func (*RootCmd) mcpConfigureClaudeDesktop() *serpent.Command { |
| 70 | cmd := &serpent.Command{ |
no test coverage detected