We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sparesparrow/mcp-project-orchestrator'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
set -e
echo "π§ͺ Testing OpenSSL + AI Integration"
echo "=================================="
# Test 1: Create OpenSSL consumer project
echo "π Test 1: Create OpenSSL consumer project"
mcp-orchestrator create-openssl-project \
--project-name test-crypto-app \
--openssl-version 3.4.1 \
--deployment-target general \
--author-name "Test Developer"
cd test-crypto-app
# Test 2: Deploy Cursor configuration
echo "π€ Test 2: Deploy Cursor configuration"
mcp-orchestrator deploy-cursor --project-type openssl --force
# Test 3: Build project
echo "π¨ Test 3: Build project"
conan remote add ${CONAN_REPOSITORY_NAME} \
${CONAN_REPOSITORY_URL} \
--force
conan install . --build=missing
cmake --preset conan-default
cmake --build --preset conan-release
# Test 4: Run application
echo "π Test 4: Run application"
./build/Release/test-crypto-app
echo "β
All tests passed!"
cd ..