MCP.so
Sign In

Everforth GitHub MCP Server

@Everforth

About Everforth GitHub MCP Server

No overview available yet

Basic information

Category

Version Control

Runtime

node

Transports

stdio

Publisher

Everforth

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "github-cli": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "GITHUB_PERSONAL_ACCESS_TOKEN",
        "ikutani41/github-cli-mcp-server"
      ],
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "<PERSONAL ACCESS TOKEN HERE>"
      }
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is Everforth GitHub MCP Server?

The Everforth GitHub MCP Server is a simple MCP server that sends GraphQL queries to the GitHub API. It is designed for users who need secure handling of GitHub access tokens (avoiding exposure to Cursor Agent) and require access to GitHub ProjectV2 (kanban) features, which the official GitHub MCP server does not support well.

How to use Everforth GitHub MCP Server?

Add the github-cli section to your Cursor mcp.json configuration with your GitHub personal access token in the env field. Restart Cursor. Optionally, add instruction rules for owner and repository names in the Rules section.

Key features of Everforth GitHub MCP Server

  • Uses GraphQL to interact with GitHub API
  • Keeps access tokens secure (not passed to Cursor Agent)
  • Public Docker image available for immediate use
  • Customizable via provided Dockerfile
  • Supports GitHub ProjectV2 (kanban) queries

Use cases of Everforth GitHub MCP Server

  • Query GitHub issues, pull requests, and project boards via GraphQL
  • Securely manage GitHub data within Cursor without exposing tokens
  • Integrate GitHub ProjectV2 kanban workflows into AI-driven coding sessions

FAQ from Everforth GitHub MCP Server

How does this differ from the official GitHub MCP?

The official GitHub MCP server was not fully usable and does not support GitHub ProjectV2 (kanban), which requires GraphQL. This server provides a GraphQL-based alternative.

What runtime is required?

The server runs via Docker. A public image (ikutani41/github-cli-mcp-server) is provided; alternatively, you can build your own using the provided Dockerfile after running npm install.

Where does data live?

All data is fetched live from GitHub’s API. No local storage is used.

Are there any known limitations?

The README does not list any specific limitations. The server focuses on GraphQL queries to GitHub.

What transport or authentication is used?

The server communicates via stdin/stdout over Docker. Authentication uses a GitHub personal access token set via the GITHUB_PERSONAL_ACCESS_TOKEN environment variable.

Comments

More Version Control MCP servers