Skip to main content
Glama

Dynamic Excel MCP Server

by nam090320251
test-sse.shโ€ข1.06 kB
#!/bin/bash # Test script for SSE endpoint # Run this after starting the server with: TRANSPORT_MODE=http npm start echo "๐Ÿงช Testing Excel MCP Server HTTP/SSE endpoints..." echo "" # Test 1: Health check echo "1๏ธโƒฃ Testing /health endpoint..." HEALTH_RESPONSE=$(curl -s http://localhost:3000/health) echo "Response: $HEALTH_RESPONSE" echo "" # Test 2: Info endpoint echo "2๏ธโƒฃ Testing /info endpoint..." INFO_RESPONSE=$(curl -s http://localhost:3000/info) echo "Response: $INFO_RESPONSE" echo "" # Test 3: SSE endpoint connection echo "3๏ธโƒฃ Testing /sse endpoint (5 seconds)..." echo "Connecting to SSE endpoint..." timeout 5 curl -N -H "Accept: text/event-stream" http://localhost:3000/sse & SSE_PID=$! sleep 6 if ps -p $SSE_PID > /dev/null 2>&1; then echo "โš ๏ธ SSE connection still active (killing)" kill $SSE_PID 2>/dev/null else echo "โœ… SSE connection established and closed cleanly" fi echo "" echo "โœ… Basic connectivity tests complete!" echo "" echo "๐Ÿ“ To test with MCP SDK client, see examples/client-example.ts"

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/nam090320251/dynamic-excel-mcp-server'

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