Skip to main content
Glama
112,426 tools. Last updated 2026-04-19 18:48
  • Read any file from a solution's GitHub repo. Returns the file content. Use this to read connector source code, skill definitions, or any versioned file. Great for reviewing previous versions or understanding what's in the repo.
    Connector
  • Retrieve an artifact from storage. Fetches the content of a previously saved artifact. Args: path: Full path of the artifact (e.g., "/project/docs/api.md") Returns: Artifact content or error message Examples: >>> await retrieve_artifact("/readme.md") "# README\nThis is the readme content..."
    Connector
  • Save an artifact to storage. Stores user-created content (diagrams, notes, code) in an organized file structure. Content is also indexed for search. Args: content: File content to save path: Full path including filename (e.g., "/project/docs/api.md") Returns: Success message or error description Examples: >>> await save_artifact("# README", "/readme.md") "✅ Artifact saved: /readme.md (8 bytes)" >>> await save_artifact("<svg>...</svg>", "/diagrams/architecture.svg") "✅ Artifact saved: /diagrams/architecture.svg (image/svg+xml, 45 bytes)"
    Connector
  • Edit a file in the solution's GitHub repo and commit. Two modes: 1. FULL FILE: provide `content` — replaces entire file (good for new files or small files) 2. SEARCH/REPLACE: provide `search` + `replace` — surgical edit without sending full file (preferred for large files like server.js) Always use search/replace for large files (>5KB). Always read the file first with ateam_github_read to get the exact text to search for.
    Connector

Matching MCP Servers

Matching MCP Connectors

  • GitHub MCP — wraps the GitHub public REST API (no auth required for public endpoints)

  • Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.