We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gleb-roma/mcp_file_system'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Makefile•1.22 KiB
.PHONY: run clean test install
# Default target
all: run
# Run the MCP server
run:
uv run main.py
# Run the server in development mode
dev:
uv run --reload main.py
# Install dependencies
install:
uv sync
# Test the server
test:
uv run python -c "import main; print('Server imports successfully')"
# Clean up Python cache files
clean:
find . -type d -name "__pycache__" -exec rm -r {} +
find . -type f -name "*.pyc" -delete
find . -type f -name "*.pyo" -delete
find . -type f -name "*.pyd" -delete
find . -type f -name ".coverage" -delete
find . -type d -name "*.egg-info" -exec rm -r {} +
find . -type d -name "*.egg" -exec rm -r {} +
find . -type d -name ".pytest_cache" -exec rm -r {} +
find . -type d -name ".coverage" -exec rm -r {} +
find . -type d -name "htmlcov" -exec rm -r {} +
find . -type d -name "dist" -exec rm -r {} +
find . -type d -name "build" -exec rm -r {} +
# Help target
help:
@echo "Available targets:"
@echo " run - Start the MCP server"
@echo " dev - Start the server in development mode with auto-reload"
@echo " install- Install dependencies"
@echo " test - Test server imports"
@echo " clean - Remove Python cache files and build artifacts"
@echo " help - Show this help message"