Endpoints - fleXRPL/github-mcp GitHub Wiki

Endpoints

This page documents the main API endpoints of the GitHub MCP Server.

Main Endpoints

  • GET / — Server info and available tools
  • POST /tool — Execute a tool call
  • GET /sse — Server-Sent Events for streaming responses

Request/Response Flow

sequenceDiagram
    participant Client
    participant MCPServer
    participant GitHub
    Client->>MCPServer: API Request
    MCPServer->>GitHub: GitHub API Call
    GitHub-->>MCPServer: API Response
    MCPServer-->>Client: Tool Result

Related