Skip to content

Commit 2009404

Browse files
authored
Remove MCP command stub (#362)
* Remove MCP command stub The mcp command was a non-functional placeholder that returned "not yet implemented" — its presence in help and command listings was misleading. Drop the stub, its registration, catalog entry, and smoke test exclusion. * Remove MCP entries from .surface-breaking Dead references now that the stub is gone.
1 parent 97f0270 commit 2009404

6 files changed

Lines changed: 0 additions & 43 deletions

File tree

.surface-breaking

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ CMD basecamp campfire list
4242
CMD basecamp campfire messages
4343
CMD basecamp campfire post
4444
CMD basecamp campfire upload
45-
CMD basecamp mcp
4645
CMD basecamp upload archive
4746
CMD basecamp upload doc
4847
CMD basecamp upload doc create
@@ -349,7 +348,6 @@ FLAG basecamp lineup create --date type=string
349348
FLAG basecamp lineup create --name type=string
350349
FLAG basecamp lineup update --date type=string
351350
FLAG basecamp lineup update --name type=string
352-
FLAG basecamp mcp --help type=bool
353351
FLAG basecamp message --body type=string
354352
FLAG basecamp message --content type=string
355353
FLAG basecamp message --subject type=string
@@ -654,7 +652,6 @@ SUB basecamp campfire list
654652
SUB basecamp campfire messages
655653
SUB basecamp campfire post
656654
SUB basecamp campfire upload
657-
SUB basecamp mcp
658655
SUB basecamp upload archive
659656
SUB basecamp upload doc
660657
SUB basecamp upload doc create

e2e/smoke/smoke_lifecycle.bats

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,6 @@ load smoke_helper
4848
mark_out_of_scope "Shell completion generation"
4949
}
5050

51-
@test "mcp is out of scope" {
52-
mark_out_of_scope "MCP server — long-running process"
53-
}
5451

5552
@test "tui is out of scope" {
5653
mark_out_of_scope "Terminal UI — interactive"

internal/cli/root.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,6 @@ func Execute() {
298298
cmd.AddCommand(commands.NewToolsCmd())
299299
cmd.AddCommand(commands.NewConfigCmd())
300300
cmd.AddCommand(commands.NewTodolistgroupsCmd())
301-
cmd.AddCommand(commands.NewMCPCmd())
302301
cmd.AddCommand(commands.NewCommandsCmd())
303302
cmd.AddCommand(commands.NewVersionCmd())
304303
cmd.AddCommand(commands.NewTimelineCmd())

internal/commands/commands.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ func CommandCategories() []CommandCategory {
133133
Commands: []CommandInfo{
134134
{Name: "commands", Category: "additional", Description: "List all commands"},
135135
{Name: "completion", Category: "additional", Description: "Generate shell completions", Actions: []string{"bash", "zsh", "fish", "powershell", "refresh", "status"}},
136-
{Name: "mcp", Category: "additional", Description: "MCP server integration", Actions: []string{"server"}},
137136
{Name: "tools", Category: "additional", Description: "Manage project dock tools", Actions: []string{"show", "create", "update", "trash", "enable", "disable", "reposition"}},
138137
{Name: "skill", Category: "additional", Description: "Manage the embedded agent skill file", Actions: []string{"install"}},
139138
{Name: "tui", Category: "additional", Description: "Launch the Basecamp workspace", Experimental: true, DevOnly: true},

internal/commands/commands_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ func buildRootWithAllCommands() *cobra.Command {
101101
root.AddCommand(commands.NewToolsCmd())
102102
root.AddCommand(commands.NewConfigCmd())
103103
root.AddCommand(commands.NewTodolistgroupsCmd())
104-
root.AddCommand(commands.NewMCPCmd())
105104
root.AddCommand(commands.NewCommandsCmd())
106105
root.AddCommand(commands.NewVersionCmd())
107106
root.AddCommand(commands.NewTimelineCmd())

internal/commands/mcp.go

Lines changed: 0 additions & 34 deletions
This file was deleted.

0 commit comments

Comments
 (0)