Skip to main content
Glama
Makefile1.14 kB
# Makefile .PHONY: setup run clean setup: curl -LsSf https://astral.sh/uv/install.sh | sh uv venv .venv --python=3.12 chmod +x run.sh uv pip install -r requirements.txt run: uv run uvicorn server.main:app --host 0.0.0.0 --port 8081 --reload make run prod: uv run uvicorn server.main:app --host 0.0.0.0 --port 8081 runmcp: cd selfmemory-mcp && uv run python3 main.py clean: rm -rf .ruff_cache rm -rf selfmemory.egg-info rm -rf selfmemory-mcp/selfmemory_mcp.egg-info find . -type d -name "__pycache__" -exec rm -rf {} + rm -rf dist/ allclean: rm -rf .venv rm -rf .ruff_cache rm -rf selfmemory.egg-info rm -rf selfmemory-mcp/selfmemory_mcp.egg-info find . -type d -name "__pycache__" -exec rm -rf {} + rm -rf dist/ build: uv build cleanauth: cd ory-infrastructure && docker-compose down rm -rf ory-infrastructure/volumes/postgres docker compose up restartauth: cd ory-infrastructure && docker-compose down docker compose up # Code quality targets lint: uv run ruff check . lint-fix: uv run ruff check --fix . format: uv run ruff format . quality: lint-fix format @echo "✅ Code quality checks complete"

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/shrijayan/SelfMemory'

If you have feedback or need assistance with the MCP directory API, please join our Discord server