Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
GITHUB_REPONoRepository nameorganisation.md
GITHUB_OWNERYesGitHub username or organisation that owns the repo
GITHUB_TOKENYesGitHub personal access token with repo scope

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}
resources
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
read_orgA

Read the full organisation.md file from the GitHub repo.

read_sectionA

Read a specific section from organisation.md by heading name.

update_sectionB

Propose an update to a section in organisation.md. Creates a pull request for review.

propose_changeB

Propose a change to any file in the organisation.md repo. Creates a pull request.

search_contextA

Search across organisation.md and CONTEXT/ files for matching text.

list_context_filesB

List all files in the CONTEXT/ directory of the repo.

import_fileA

import a file (txt, md, docx) into the repo as context. creates a context/ entry and updates the organisation.md index. the ai agent passes file content it has already read.

add_infoA

add information to the knowledge base using natural language. describes what to add, and the tool figures out which section and file to put it in.

remove_infoB

remove information from the knowledge base using natural language. describes what to remove, and the tool finds and removes it.

check_rolesA

check who has what permissions on this repo. reads the codeowners file and current collaborator permissions.

configure_codeownersB

update the .github/codeowners file to define who can approve changes to specific paths.

check_permissionsA

check if the current user can perform a specific action (add, delete, approve, merge).

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription
organisation.md - Full ContentThe entire organisation.md file with all sections
organisation.md - IdentityThe Identity section of organisation.md
organisation.md - Mission & VisionThe Mission & Vision section of organisation.md
organisation.md - TeamThe Team section of organisation.md
organisation.md - Active ProjectsThe Active Projects section of organisation.md
organisation.md - DecisionsThe Decisions section of organisation.md
organisation.md - PreferencesThe Preferences section of organisation.md
organisation.md - RoutinesThe Routines section of organisation.md
organisation.md - GlossaryThe Glossary section of organisation.md

TDQS

A3.8/5.0

Scored across 12 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: reading (read_org, read_section), writing via PR (update_section, propose_change), natural language modifications (add_info, remove_info), permissions (check_permissions, check_roles, configure_codeowners), and file management (import_file, list_context_files, search_context). No two tools overlap in functionality.

Naming Consistency5/5

Tool names consistently follow a verb_noun pattern in snake_case (e.g., add_info, list_context_files, update_section). All names are clear and predictable, with no mixing of conventions.

Tool Count5/5

With 12 tools, the server is well-scoped for its purpose of managing an organisation.md knowledge base and associated context files. Each tool addresses a specific operation, neither too few nor too many.

Completeness4/5

The tool set covers reading, updating, adding/removing information, searching, importing files, and permissions. Minor gaps include no tool to delete a context file directly (only import and list) and no direct write without PR, but these are reasonable for a review-based workflow.

Maintenance

ActivityStale
ResponsivenessNo issues