We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SPRIME01/MCPContextForge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
debug_mcp.sh•421 B
#!/bin/bash
# Simple debug script to see what Gemini is sending
echo "DEBUG: Starting MCP debug bridge" >&2
echo "DEBUG: Environment variables:" >&2
env | grep -E "(MCP|WSL)" >&2
# Read input and log it
while IFS= read -r line; do
echo "DEBUG: Received line: $line" >&2
# For now, just send a basic error response
echo '{"jsonrpc":"2.0","error":{"code":-32601,"message":"Method not found"},"id":null}'
done