We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jkawamoto/mcp-bear'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name: Release
on:
push:
tags:
- "v*.*.*"
permissions:
id-token: write
contents: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create package artifact
run: npx @anthropic-ai/mcpb pack
- name: Release
uses: softprops/action-gh-release@v2
with:
files: "*.mcpb"
- name: Update fileSha256 in server.json
run: |
SHA256_HASH=$(sha256sum "mcp-bear.mcpb" | awk '{print $1}')
jq --arg hash "$SHA256_HASH" '.packages[0].fileSha256 = $hash' server.json > server_tmp.json
mv server_tmp.json server.json
- name: Install MCP Publisher
run: |
curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_linux_amd64.tar.gz" | tar xz mcp-publisher
- name: Login to MCP Registry
run: ./mcp-publisher login github-oidc
- name: Publish to MCP Registry
run: ./mcp-publisher publish