Created
June 25, 2025 17:20
-
-
Save ajeetraina/d1312f2936729e9f06451ba9dc91f742 to your computer and use it in GitHub Desktop.
Revisions
-
ajeetraina created this gist
Jun 25, 2025 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,33 @@ #!/bin/bash echo "🔍 Debugging Docker MCP Tools" echo "=============================" # Check what tools are available echo "1. Listing available MCP tools..." echo "docker mcp tools list:" docker mcp tools list 2>&1 echo "" echo "2. Testing basic GitHub connection..." echo "docker mcp tools call get_me:" docker mcp tools call get_me 2>&1 echo "" echo "3. Testing repository creation directly..." echo "docker mcp tools call create_repository:" docker mcp tools call create_repository '{"name":"test-debug-repo","description":"Debug test","private":false,"autoInit":true}' 2>&1 echo "" echo "4. Check what repositories you already have..." echo "Let's see your existing repositories first:" # Try to list repositories to see what tools are actually available docker mcp tools call list_repositories '{}' 2>&1 || echo "list_repositories not available" echo "" echo "5. Check if we can get repository info..." docker mcp tools call get_repository '{"owner":"ajeetraina","repo":"docker-mcp-entropy-management"}' 2>&1 || echo "get_repository not available" echo "" echo "6. List all available GitHub MCP tools..." docker mcp tools list | grep -E "(create|repo|github)" || echo "No repository-related tools found"