PyGithub MCP Server

  • src
  • pygithub_mcp_server
"""GitHub MCP Server. This package provides a Model Context Protocol server for interacting with the GitHub API. It exposes tools for common GitHub operations like managing issues, repositories, and pull requests. """ from .server import create_server from .version import VERSION __version__ = VERSION __all__ = ["create_server", "__version__"]