We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AIO-2030/mcp-audio'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
MCP_ID="mcp-audio"
HELP_FILE="mcp_audio_registration.json"
CANISTER="endpoint_registry"
NETWORK="local"
if ! command -v jq &> /dev/null
then
echo "jq is not installed. Please install jq first."
exit 1
fi
JSON_PAYLOAD=$(cat "$HELP_FILE" | jq -c .)
echo "Registering MCP [$MCP_ID] to [$CANISTER] on [$NETWORK]..."
dfx canister --network "$NETWORK" call "$CANISTER" register_mcp "(\"$JSON_PAYLOAD\")"