Skip to main content
Glama
quick_verify.shโ€ข1.08 kB
#!/bin/bash # Quick verification script to ensure tool count parity echo "๐Ÿ”ง Kotlin MCP Server - Tool Count Verification" echo "==============================================" # Get server tool count echo "๐Ÿ“Š Checking server tool count..." SERVER_COUNT=$(python3 kotlin_mcp_server.py --list-tools 2>/dev/null | grep "Available tools" | grep -o '[0-9]\+' || echo "0") echo " Server reports: $SERVER_COUNT tools" # Check VS Code parity echo "๐Ÿ“ฑ Checking VS Code parity..." PARITY_RESULT=$(python3 scripts/vscode_parity_check.py 2>/dev/null | grep "VS Code visible:" | grep -o '[0-9]\+' || echo "0") echo " VS Code would show: $PARITY_RESULT tools" # Results echo if [ "$SERVER_COUNT" = "$PARITY_RESULT" ] && [ "$SERVER_COUNT" -gt 0 ]; then echo "โœ… SUCCESS: Tool count parity achieved ($SERVER_COUNT = $PARITY_RESULT)" echo "๐ŸŽ‰ VS Code will show the same number of tools as the server!" exit 0 else echo "โŒ FAILED: Tool count mismatch ($SERVER_COUNT โ‰  $PARITY_RESULT)" echo "๐Ÿ” Run 'make verify-tools' for detailed analysis" exit 1 fi

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/normaltusker/kotlin-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server