mcp-server-gist

coreycao/mcp-server-gist

3.2

If you are the rightful owner of mcp-server-gist and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

A Model Context Protocol (MCP) Server that wraps the GitHub 'create gist' API as an MCP tool.

mcp-server-gist

create gist by using MCP.

A Model Context Protocol(MCP) Server that wrap github create gist api as a MCP tool.

Tools

  • create-gist
    • create a gist to your github account
    • Inputs:
      • gistContent(string): the content of the gist file.
      • isPublic(boolean): Whether the gist is public or secret, if not explicitly specified, it will be false.
      • filename(string): the name of the gist file, if not explicitly specified, it will be generated automatically.
    • Returns: gist url

Usage

{
  "mcpServers": {
    "create-gist": {
      "command": "node",
      "args": [
        "LOCAL_ABSOLUTE_PATH/mcp-server-gist/build/index.js"
      ],
      "env": {
        "GITHUB_GIST_TOKEN": "YOUR_OWN_GITHUB_TOKEN"
      }
    }
  }
}

A fine grained TOKEN is needed.