Configuration - fleXRPL/github-mcp GitHub Wiki

Configuration

Configure the GitHub MCP Server to suit your environment.

Configuration Options

  • Port: Default is 8000, can be changed with --port
  • Log Level: Set with --log-level (info, debug, warning, error)
  • SSE Endpoint: /sse for real-time updates
  • Tool Registration: Add or remove tools in server.py

Configuration Process

flowchart TD
    A[Start Server] --> B{Custom Options?}
    B -- Yes --> C[Apply CLI Flags]
    B -- No --> D[Use Defaults]
    C --> E[Server Running]
    D --> E

Example

python -m github_mcp.server --port 9000 --log-level debug

Related