We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CollinDex/block-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Makefile•649 B
# The default target (what happens if you just type 'make')
.DEFAULT_GOAL := run
# ---------------------------------------------------------
# PRODUCTION COMMANDS
# ---------------------------------------------------------
# Run the server normally
run:
uv run main.py
# Install dependencies (useful for setting up the server)
install:
uv sync
# ---------------------------------------------------------
# DEVELOPMENT COMMANDS
# ---------------------------------------------------------
# Run the Inspector (Test Tool)
dev:
npx -y @modelcontextprotocol/inspector uv run main.py
# Clean up junk files
clean:
rm -rf .venv
rm -rf __pycache__