@capgo/cli 7.61.0 → 7.62.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -62,6 +62,7 @@ Follow the documentation here: https://capacitorjs.com/docs/getting-started/
62
62
  - 🔹 [Build](#build)
63
63
  - [Request](#build-request)
64
64
  - [Credentials](#build-credentials)
65
+ - 🔹 [Mcp](#mcp)
65
66
 
66
67
  ## <a id="init"></a> 🚀 **Init**
67
68
 
@@ -972,6 +973,41 @@ Manage build credentials stored locally on your machine.
972
973
  Android setup: https://capgo.app/docs/cli/cloud-build/android/
973
974
 
974
975
 
976
+ ## <a id="mcp"></a> 🔹 **Mcp**
977
+
978
+ ```bash
979
+ npx @capgo/cli@latest mcp
980
+ ```
981
+
982
+ 🤖 Start the Capgo MCP (Model Context Protocol) server for AI agent integration.
983
+ This command starts an MCP server that exposes Capgo functionality as tools for AI agents.
984
+ The server communicates via stdio and is designed for non-interactive, programmatic use.
985
+ Available tools exposed via MCP:
986
+ - capgo_list_apps, capgo_add_app, capgo_update_app, capgo_delete_app
987
+ - capgo_upload_bundle, capgo_list_bundles, capgo_delete_bundle, capgo_cleanup_bundles
988
+ - capgo_list_channels, capgo_add_channel, capgo_update_channel, capgo_delete_channel
989
+ - capgo_get_current_bundle, capgo_check_compatibility
990
+ - capgo_list_organizations, capgo_add_organization
991
+ - capgo_get_account_id, capgo_doctor, capgo_get_stats
992
+ - capgo_request_build, capgo_generate_encryption_keys
993
+ Example usage with Claude Desktop:
994
+ Add to claude_desktop_config.json:
995
+ {
996
+ "mcpServers": {
997
+ "capgo": {
998
+ "command": "npx",
999
+ "args": ["@capgo/cli", "mcp"]
1000
+ }
1001
+ }
1002
+ }
1003
+
1004
+ **Example:**
1005
+
1006
+ ```bash
1007
+ npx @capgo/cli mcp
1008
+ ```
1009
+
1010
+
975
1011
 
976
1012
  <!-- AUTO-GENERATED-DOCS-END -->
977
1013