Skip to main content
Glama

Gerrit Review MCP Server

smithery.yaml1.37 kB
# Smithery configuration file: https://smithery.ai/docs/build/project-config startCommand: type: stdio configSchema: # JSON Schema defining the configuration options for the MCP. type: object required: - gerritHost - gerritUser properties: gerritHost: type: string description: Gerrit server hostname (without https://) gerritUser: type: string description: Gerrit username gerritHttpPassword: type: string default: "" description: Gerrit HTTP password (optional) gerritExcludedPatterns: type: string default: "" description: Comma-separated regex patterns for files to exclude from change reviews (optional) commandFunction: # A JS function that produces the CLI command based on the given config to start the MCP on stdio. |- (config) => ({ command: 'python', args: ['server.py'], env: { GERRIT_HOST: config.gerritHost, GERRIT_USER: config.gerritUser, GERRIT_HTTP_PASSWORD: config.gerritHttpPassword, GERRIT_EXCLUDED_PATTERNS: config.gerritExcludedPatterns || "" } }) exampleConfig: gerritHost: gerrit.example.com gerritUser: reviewbot gerritHttpPassword: s3cret gerritExcludedPatterns: "\.pbxproj$,\.xcworkspace$,node_modules/"

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/cayirtepeomer/gerrit-code-review-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server