We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mbloomhammerspace/mcp-1.5-main'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_single_question.sh•418 B
#!/bin/bash
# Test a single question to the Web UI
echo "Testing: List all objectives for /mnt/se-lab/modelstore/gtc-demo-models/"
curl -s -X POST http://localhost:5000/api/clear
response=$(curl -s -X POST http://localhost:5000/api/chat \
-H "Content-Type: application/json" \
-d '{"message": "List all objectives for /mnt/se-lab/modelstore/gtc-demo-models/"}')
echo "$response" | jq -r '.response // .error'