We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Cloudmeru/MetaTrader-5-MCP-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name: Publish to PyPI
on:
release:
types:
- published
permissions:
contents: read
jobs:
build-and-publish:
name: Build and publish distribution
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
environment:
name: pypi
url: https://pypi.org/project/mt5-mcp/
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install build tooling
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Clean previous build artifacts
run: |
python -c "import pathlib, shutil; shutil.rmtree('dist', ignore_errors=True); pathlib.Path('dist').mkdir(exist_ok=True)"
- name: Build sdist and wheel
run: python -m build
- name: Verify artifacts with twine
run: python -m twine check dist/*
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1