Skip to main content
Glama

PubMed MCP Server

by chrismannina
ci_simulation.shโ€ข779 B
#!/bin/bash # Complete CI/CD Pipeline Simulation Script echo "๐Ÿ”ง Simulating CI/CD Pipeline Locally..." echo "" echo "๐Ÿ“ฆ Step 1: Install dependencies" pip install pytest pytest-asyncio black isort mypy flake8 --quiet echo "โœ… Step 2: Check code formatting" black --check --diff src/ tests/ || (echo "โŒ Code formatting issues found" && exit 1) echo "๐Ÿ” Step 3: Run linting" flake8 src/ tests/ --quiet || (echo "โŒ Linting issues found" && exit 1) echo "๐Ÿงช Step 4: Run tests" python -m pytest tests/ -v --tb=short -x || (echo "โŒ Tests failed" && exit 1) echo "๐Ÿ“ฆ Step 5: Test package installation" pip install -e . --quiet python -c "import src; print('โœ… Package imports successfully')" echo "" echo "๐ŸŽ‰ CI/CD Pipeline simulation completed successfully!"

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/chrismannina/pubmed-mcp'

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