We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/iamjpsharma/MCPServer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
manage.sh•396 B
#!/bin/bash
# Wrapper script for project management
# Get absolute path to the virtual environment python
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
PYTHON_CMD="$SCRIPT_DIR/.venv/bin/python"
# Check if venv exists
if [ ! -f "$PYTHON_CMD" ]; then
echo "Error: Virtual environment not found."
exit 1
fi
# Run the manage module
"$PYTHON_CMD" -m mcp_memory.manage "$@"