mirror of
https://github.com/FlipsideCrypto/flipside-mcp-extension.git
synced 2026-02-06 03:06:48 +00:00
- 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>
22 lines
599 B
Bash
Executable File
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 |