We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/arabold/docs-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run-provider.sh•335 B
#!/bin/bash
set -e
# Ensure we are in the directory of this script (tests/search-eval)
cd "$(dirname "$0")"
# Execute the provider script and capture all output
# We use sed to extract only the JSON part (from first { to last })
OUTPUT=$(npx vite-node ../../src/tools/search-provider.ts "$@" 2>&1)
echo "$OUTPUT" | sed -n '/^{.*}$/p'