npm @barissozudogru/release-intel-mcpstdioMITupdated 13d ago
Build release context from repository evidence instead of a blank prompt. The server compares two Git refs and correlates commits, merged pull requests, linked issues, labels, changed files, and contributors into a structured release record.
What can you do with Release Intel?
release-intel-mcp
Build release context from repository evidence instead of a blank prompt. The server compares two Git refs and correlates commits, merged pull requests, linked issues, labels, changed files, and contributors into a structured release record.
Tool page ยท npm ยท Listed in the official MCP Registry
Start in one minute
Create a fine-grained GitHub token with read-only access to the repositories you want to inspect. Repository contents and pull requests are sufficient for the current tools. No write permission is needed.
{
"mcpServers": {
"release-intel": {
"command": "npx",
"args": ["-y", "@barissozudogru/release-intel-mcp"],
"env": {
"GITHUB_TOKEN": "your_read_only_token"
}
}
}
}
Then ask the client for a bounded range:
Use release-intel to build release evidence for owner/repository
from v1.4.0 to v1.5.0. Separate merged PRs from direct commits
and preserve links to the repository record.
The token stays in the local server process and is sent only to the GitHub API.
Proof on this repository
A verified run against the stable range v0.5.1...8a2f350 returned:
Repository: barissozudogru/release-intel-mcp
Commits: 14
Merged PRs: 1
Files changed: 12
Lines added: 286
Lines deleted: 135
Contributors: 1
The response also includes commit SHAs, messages, authors, pull request categories, linked issues, and warnings when GitHub truncates or fails part of the evidence lookup.
If this saves you time, consider starring the repository. It helps other developers find it.
Tools
| Tool | What it returns |
|---|---|
get_changes_between_refs |
Commits enriched with merged pull request metadata and linked issues |
get_pull_requests_in_range |
Merged pull requests grouped as breaking, feature, fix, docs, chore, dependency, release, or other |
get_release_summary |
A complete release evidence object with aggregate statistics and contributors |
The categorization uses labels and conventional title signals. Repository labels, issue links, and pull request hygiene directly affect the result. The server provides evidence and structure; the final release narrative still needs review.
Release report command
The package includes a terminal command that produces Markdown by default:
GITHUB_TOKEN=your_read_only_token \
npx --yes --package @barissozudogru/release-intel-mcp \
release-intel-report owner/repository v1.4.0 v1.5.0
Use --json when another tool will consume the report:
release-intel-report owner/repository v1.4.0 v1.5.0 --json
GitHub Action
Attach the evidence report to the workflow summary before publishing a release:
name: Release evidence
on:
workflow_dispatch:
inputs:
from_ref:
required: true
to_ref:
required: true
jobs:
evidence:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
steps:
- uses: barissozudogru/release-intel-mcp@v0.7.2
with:
from-ref: ${{ inputs.from_ref }}
to-ref: ${{ inputs.to_ref }}
token: ${{ secrets.GITHUB_TOKEN }}
This action reads repository data and writes Markdown to the job summary. It does not publish a release or modify repository content.
Client setup
Use the stdio configuration from the quickstart. The server entry is identical across these clients even when their config file locations differ.
Create .vscode/mcp.json:
{
"servers": {
"release-intel": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@barissozudogru/release-intel-mcp"],
"env": {
"GITHUB_TOKEN": "your_read_only_token"
}
}
}
}
GITHUB_TOKEN=your_read_only_token \
npx @barissozudogru/release-intel-mcp --http
The MCP endpoint is http://localhost:3000/mcp and the health endpoint is http://localhost:3000/health. Set PORT to change the port.
docker build -t release-intel-mcp .
docker run -p 3000:3000 \
-e GITHUB_TOKEN=your_read_only_token \
release-intel-mcp
Connect an HTTP client to http://localhost:3000/mcp.
Local development
npm install
npm test
npm run build
GITHUB_TOKEN=your_read_only_token node dist/index.js
Requirements: Node.js 18 or newer.
See CONTRIBUTING.md for the development workflow.
Security and limits
- Use a fine-grained, read-only token restricted to the required repositories.
- The server never needs permission to write releases, issues, or pull requests.
- GitHub's compare endpoint limits very large ranges. The response reports truncation.
- Unlinked direct commits remain visible but cannot inherit pull request metadata.
- Release categories are evidence-backed heuristics, not editorial conclusions.
License
Install
Add Release Intel to your client. Pick the one you use.
claude mcp add release-intel-mcp -- npx -y @barissozudogru/release-intel-mcpcodex mcp add release-intel-mcp -- npx -y @barissozudogru/release-intel-mcpamp mcp add release-intel-mcp -- npx -y @barissozudogru/release-intel-mcp{
"mcpServers": {
"release-intel-mcp": {
"command": "npx",
"args": [
"-y",
"@barissozudogru/release-intel-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"release-intel-mcp": {
"command": "npx",
"args": [
"-y",
"@barissozudogru/release-intel-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"release-intel-mcp","command":"npx","args":["-y","@barissozudogru/release-intel-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"release-intel-mcp": {
"command": "npx",
"args": [
"-y",
"@barissozudogru/release-intel-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"release-intel-mcp": {
"command": "npx",
"args": [
"-y",
"@barissozudogru/release-intel-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"release-intel-mcp": {
"command": "npx",
"args": [
"-y",
"@barissozudogru/release-intel-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"release-intel-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@barissozudogru/release-intel-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"release-intel-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@barissozudogru/release-intel-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @barissozudogru/release-intel-mcpRun `goose configure`, choose **Add Extension โ Command-line Extension**, and paste this command.
3 tools
Release Intel exposes 3 tools to a connected agent.
- get_changes_between_refs
- Commits enriched with merged pull request metadata and linked issues
- get_pull_requests_in_range
- Merged pull requests grouped as breaking, feature, fix, docs, chore, dependency, release, or other
- get_release_summary
- A complete release evidence object with aggregate statistics and contributors
Score
79 / 100
Good
- Documentation25/25
- Maintenance25/25
- Trust13/20
- Capability4/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 6 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 3 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 0.7.2Latest | Aug 26, 2026 |
| 0.7.1 | Aug 26, 2026 |
| 0.7.0 | Aug 25, 2026 |
| 0.6.1 | Aug 20, 2026 |