Skip to content

Latest commit

 

History

History
61 lines (40 loc) · 1.6 KB

File metadata and controls

61 lines (40 loc) · 1.6 KB

glama-submit

Bulk-submit all your MCP server repos to glama.ai in one command.

Glama indexes MCP servers via a glama.json file in each repo root. This tool automatically finds every MCP repo in your GitHub account and commits that file to each one.

How it works

  1. Fetches all your public GitHub repos
  2. Filters for MCP repos (by name, description, or topic containing mcp / model-context-protocol)
  3. Commits a glama.json to each repo's default branch
  4. Glama crawls GitHub and your repos appear at glama.ai/mcp/servers within ~24h

Usage

GITHUB_TOKEN=ghp_... GITHUB_USERNAME=yourname npx glama-submit

Dry run (preview only, no changes):

GITHUB_TOKEN=ghp_... GITHUB_USERNAME=yourname npx glama-submit --dry-run

Requirements

Token setup

  1. Go to github.com/settings/tokens/new
  2. Check public_repo scope
  3. Generate and copy the token

What gets committed

A glama.json is added to each MCP repo root:

{
  "$schema": "https://glama.ai/mcp/schemas/server.json",
  "maintainers": ["your-github-username"]
}

Repos that already have a valid glama.json are skipped automatically.

MCP detection

A repo is considered an MCP server if its name, description, or GitHub topics contain any of:

  • mcp
  • model-context-protocol
  • modelcontextprotocol
  • model context protocol

License

All rights reserved. See LICENSE.