Skip to main content
Glama

release-intel-mcp

Ein MCP-Server, der Release-Intelligence aus GitHub-Repository-Daten generiert. Er korreliert Commits, Pull Requests, Issues und Mitwirkende zwischen zwei beliebigen Git-Refs und liefert strukturierten Kontext, der für die KI-Synthese zu Release-Notes, Changelogs und Release-Zusammenfassungen bereit ist.


Werkzeuge

get_changes_between_refs

Ruft alle Commits zwischen zwei Git-Refs ab, angereichert mit zugehörigen PR-Metadaten, Autoreninformationen und verknüpften Issues.

Feld

Typ

Beschreibung

owner

string

GitHub-Repository-Besitzer oder -Organisation

repo

string

GitHub-Repository-Name

base

string

Basis-Ref (älterer Tag, Branch oder SHA)

head

string

Head-Ref (neuerer Tag, Branch oder SHA)

get_pull_requests_in_range

Ruft alle gemergten PRs zwischen zwei Refs ab, automatisch nach Label kategorisiert in: breaking, feature, fix, docs, chore, dependencies, other.

Die Eingabefelder sind identisch mit get_changes_between_refs.

get_release_summary

Erzeugt ein strukturiertes Release-Kontextobjekt, das Commit-Daten, PR-Metadaten, verknüpfte Issues, Mitwirkendenliste und aggregierte Statistiken kombiniert.

Feld

Typ

Beschreibung

owner

string

GitHub-Repository-Besitzer

repo

string

GitHub-Repository-Name

from_tag

string

Vorheriges Release-Tag (Basis)

to_tag

string

Neues Release-Tag oder HEAD


Related MCP server: MCP Releases Server

Einrichtung

Alle Optionen erfordern ein persönliches GitHub-Zugriffstoken mit Lesezugriff auf repo. Erstellen Sie eines unter: https://github.com/settings/tokens


Option A: stdio (lokaler Prozess)

Der Standardansatz: Der MCP-Client startet den Server als lokalen Unterprozess.

Claude Desktop

Konfigurationsdatei: ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "release-intel": {
      "command": "npx",
      "args": ["-y", "@barissozudogru/release-intel-mcp"],
      "env": {
        "GITHUB_TOKEN": "ghp_your_token"
      }
    }
  }
}

Claude Code

claude mcp add release-intel -e GITHUB_TOKEN=ghp_your_token -- npx -y @barissozudogru/release-intel-mcp

Cursor

Konfigurationsdatei: ~/.cursor/mcp.json

{
  "mcpServers": {
    "release-intel": {
      "command": "npx",
      "args": ["-y", "@barissozudogru/release-intel-mcp"],
      "env": {
        "GITHUB_TOKEN": "ghp_your_token"
      }
    }
  }
}

Windsurf

Konfigurationsdatei: ~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "release-intel": {
      "command": "npx",
      "args": ["-y", "@barissozudogru/release-intel-mcp"],
      "env": {
        "GITHUB_TOKEN": "ghp_your_token"
      }
    }
  }
}

VS Code + Copilot

Konfigurationsdatei: .vscode/mcp.json

{
  "servers": {
    "release-intel": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@barissozudogru/release-intel-mcp"],
      "env": {
        "GITHUB_TOKEN": "ghp_your_token"
      }
    }
  }
}

Cline

Konfigurationsdatei: ~/.cline/mcp_settings.json (oder über die Einstellungs-UI der Cline-Erweiterung)

{
  "mcpServers": {
    "release-intel": {
      "command": "npx",
      "args": ["-y", "@barissozudogru/release-intel-mcp"],
      "env": {
        "GITHUB_TOKEN": "ghp_your_token"
      }
    }
  }
}

Continue.dev

Konfigurationsdatei: ~/.continue/config.yaml

mcpServers:
  - name: release-intel
    command: npx
    args:
      - -y
      - "@barissozudogru/release-intel-mcp"
    env:
      GITHUB_TOKEN: ghp_your_token

Zed

Konfigurationsdatei: ~/.config/zed/settings.json

{
  "context_servers": {
    "release-intel": {
      "command": {
        "path": "npx",
        "args": ["-y", "@barissozudogru/release-intel-mcp"],
        "env": {
          "GITHUB_TOKEN": "ghp_your_token"
        }
      }
    }
  }
}

JetBrains (AI Assistant Plugin)

{
  "mcpServers": {
    "release-intel": {
      "command": "npx",
      "args": ["-y", "@barissozudogru/release-intel-mcp"],
      "env": {
        "GITHUB_TOKEN": "ghp_your_token"
      }
    }
  }
}

Option B: HTTP (remote / zustandslos)

Führen Sie den Server als HTTP-Endpunkt aus. Nützlich für Remote-Clients, gemeinsame Team-Bereitstellungen oder Clients, die URL-basierte Verbindungen bevorzugen.

GITHUB_TOKEN=ghp_your_token npx @barissozudogru/release-intel-mcp --http

Standardmäßig startet dies auf Port 3000. Setzen Sie PORT, um ihn zu ändern.

Cursor (HTTP)

{
  "mcpServers": {
    "release-intel": {
      "url": "http://localhost:3000/mcp"
    }
  }
}

VS Code + Copilot (HTTP)

{
  "servers": {
    "release-intel": {
      "type": "http",
      "url": "http://localhost:3000/mcp"
    }
  }
}

Windsurf (HTTP)

{
  "mcpServers": {
    "release-intel": {
      "serverUrl": "http://localhost:3000/mcp"
    }
  }
}

Continue.dev (HTTP)

mcpServers:
  - name: release-intel
    type: streamable-http
    url: http://localhost:3000/mcp

Ein Health-Check-Endpunkt ist unter GET /health verfügbar.


Option C: Docker

docker build -t release-intel-mcp .
docker run -p 3000:3000 -e GITHUB_TOKEN=ghp_your_token release-intel-mcp

Der Container startet standardmäßig im HTTP-Modus. Der MCP-Endpunkt befindet sich unter http://localhost:3000/mcp.


Umgebungsvariablen

Variable

Erforderlich

Standard

Beschreibung

GITHUB_TOKEN

Ja

-

Persönlicher GitHub-Zugriffstoken (Repo-Bereich)

TRANSPORT

Nein

stdio

Auf http setzen, um den HTTP-Modus zu aktivieren

PORT

Nein

3000

HTTP-Port (nur HTTP-Modus)


Lokale Entwicklung

git clone https://github.com/barissozudogru/release-intel-mcp.git
cd release-intel-mcp
npm install
npm run build
GITHUB_TOKEN=ghp_... node dist/index.js

Lizenz

MIT

Install Server
A
license - permissive license
A
quality
A
maintenance

Maintenance

Maintainers
Response time
0dRelease cycle
6Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    An MCP server that provides GitHub release information through the Model Context Protocol. It features a tool to retrieve the latest stable release version of any specified GitHub repository.
  • A
    license
    Not graded
    quality
    D
    maintenance
    A production-ready MCP server that provides AI assistants with comprehensive GitHub developer tooling including PR analysis, code review, changelog generation, dependency auditing, commit summarization, and refactoring suggestions.
    13
    ISC

View all related MCP servers

Related MCP Connectors

  • A MCP server built for developers enabling Git based project management with project and personal…

  • A Model Context Protocol (MCP) application for automated GitHub PR analysis and issue management.…

  • An MCP server that gives your AI access to the source code and docs of all public github repos

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/barissozudogru/release-intel-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server