flipside-mcp-extension/test-simple.sh
Erik Brakke a179b10854 Initial commit: Flipside Intelligence MCP Extension
- Add Go-based MCP proxy for Flipside Intelligence blockchain analytics
- Configure project structure with proper Go module naming
- Include comprehensive README focused on product vision
- Add manifest.json for Claude Desktop integration
- Setup build automation with Makefile and test scripts
- Configure .gitignore for Go project best practices

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-01 14:06:57 -06:00

22 lines
599 B
Bash
Executable File

#!/bin/bash
# Simple one-shot test for MCP remote proxy
if [ -z "$FLIPSIDE_API_KEY" ]; then
echo "Error: FLIPSIDE_API_KEY required"
exit 1
fi
# Build if needed
[ ! -f "./remote-mcp-proxy" ] && go build -o remote-mcp-proxy .
echo "Testing tools/list..."
echo "Press Ctrl+C after you see the response..."
echo ""
# Use a pipe to send the message
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | \
MCP_REMOTE_URL="${MCP_REMOTE_URL:-https://mcp.flipsidecrypto.xyz/beta/sse}" \
FLIPSIDE_API_KEY="$FLIPSIDE_API_KEY" \
MCP_DEBUG="${MCP_DEBUG:-true}" \
./remote-mcp-proxy