We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/knishioka/cost-management-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Use Node.js 20.x
uses: actions/setup-node@v6
with:
node-version: 20.x
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Build project
run: npm run build
- name: Create tarball
run: |
tar -czf cost-management-mcp-${{ github.ref_name }}.tar.gz \
dist/ \
package.json \
package-lock.json \
README.md \
LICENSE \
.env.example
- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: cost-management-mcp-${{ github.ref_name }}.tar.gz
body: |
## What's Changed
**Full Changelog**: https://github.com/${{ github.repository }}/compare/${{ github.event.before }}...${{ github.ref_name }}
draft: false
prerelease: false