Skip to content

Commit f2bb5e4

Browse files
Support 'tiger mcp install' for Kiro CLI (#115)
1 parent ebeacac commit f2bb5e4

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

internal/tiger/cmd/mcp_install.go

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ const (
3434
Gemini MCPClient = "gemini"
3535
VSCode MCPClient = "vscode"
3636
Antigravity MCPClient = "antigravity"
37+
KiroCLI MCPClient = "kiro-cli"
3738
)
3839

3940
// TigerMCPServer represents the Tiger MCP server configuration
@@ -139,6 +140,17 @@ var supportedClients = []clientConfig{
139140
"~/.gemini/antigravity/mcp_config.json",
140141
},
141142
},
143+
{
144+
ClientType: KiroCLI,
145+
Name: "Kiro CLI",
146+
EditorNames: []string{"kiro-cli"},
147+
ConfigPaths: []string{
148+
"~/.kiro/settings/mcp.json",
149+
},
150+
buildInstallCommand: func(tigerPath string) []string {
151+
return []string{"kiro-cli", "mcp", "add", "--name", mcp.ServerName, "--command", tigerPath, "--args", "mcp,start"}
152+
},
153+
},
142154
}
143155

144156
// getValidEditorNames returns all valid client names from supportedClients

0 commit comments

Comments
 (0)