release-intel
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 |
| string | GitHub-Repository-Besitzer oder -Organisation |
| string | GitHub-Repository-Name |
| string | Basis-Ref (älterer Tag, Branch oder SHA) |
| 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 |
| string | GitHub-Repository-Besitzer |
| string | GitHub-Repository-Name |
| string | Vorheriges Release-Tag (Basis) |
| 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-mcpCursor
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_tokenZed
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 --httpStandardmäß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/mcpEin 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-mcpDer Container startet standardmäßig im HTTP-Modus. Der MCP-Endpunkt befindet sich unter http://localhost:3000/mcp.
Umgebungsvariablen
Variable | Erforderlich | Standard | Beschreibung |
| Ja | - | Persönlicher GitHub-Zugriffstoken (Repo-Bereich) |
| Nein | stdio | Auf |
| 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.jsLizenz
MIT
Maintenance
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
- AlicenseCqualityAmaintenanceA MCP server that bridges LLMs with GitHub repository management, enabling automated analysis of pull requests, issue management, tag creation, and release management through natural language.246Apache 2.0
- FlicenseNot gradedqualityDmaintenanceAn 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.
- AlicenseNot gradedqualityDmaintenanceA 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.13ISC
- AlicenseAqualityCmaintenanceMCP server for developer workflow automation — smart commits, secret scanning, PR descriptions, and more.5MIT
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
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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