Skip to main content
Glama

Polarsteps MCP Server

by remuzel
MIT License
2
Justfile1.39 kB
# Install just: https://github.com/casey/just # Default recipe default: @just --list setup: @echo "🚀 Setting up development environment..." uv sync --dev uv pip install -e . @echo "✅ Setup complete!" # Lint code lint: @echo "🔍 Linting code..." .venv/bin/ruff check --fix --unsafe-fixes src tests .venv/bin/ruff format @echo "✅ Lint complete!" # Run tests test: @echo "🧪 Running tests..." .venv/bin/pytest tests/ -v --cov=src/polarsteps_mcp --cov-report=term-missing --cov-report=html @echo "✅ Tests complete!" # Test MCP server with inspector test-mcp: @echo "🔍 Testing MCP server with inspector..." npx @modelcontextprotocol/inspector .venv/bin/polarsteps-mcp # Run the MCP server directly run: @echo "🚀 Running MCP server..." .venv/bin/polarsteps-mcp # Clean up generated files clean: @echo "🧹 Cleaning up..." rm -rf .pytest_cache rm -rf htmlcov rm -rf .coverage rm -rf dist rm -rf build rm -rf *.egg-info find . -type d -name __pycache__ -exec rm -rf {} + find . -type f -name "*.pyc" -delete @echo "✅ Complete!" # Build package build: @echo "📦 Building package..." uv build @echo "✅ Build complete!" # Update dependencies update: @echo "🔄 Updating dependencies..." uv lock --upgrade @echo "✅ Done 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/remuzel/polarsteps-mcp'

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