Back to Browse

Release To Tasks MCP Server

by Apomt
Developer ToolsModerate5.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Convert public release-note URLs into ordered, source-cited upgrade tasks.

About

Convert public release-note URLs into ordered, source-cited upgrade tasks.

Security Report

5.2
Moderate5.2Moderate Risk

This MCP server implements a well-designed tool for parsing public release notes into structured upgrade tasks. The codebase demonstrates strong security practices with proper URL validation, SSRF protection, input sanitization, and bounded resource consumption. Permissions are appropriately scoped to public HTTPS fetching only. Minor code quality observations exist but do not constitute security concerns. Supply chain analysis found 6 known vulnerabilities in dependencies (0 critical, 2 high severity). Package verification found 1 issue.

7 files analyzed · 11 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-apomt-release-to-tasks": {
      "args": [
        "-y",
        "release-to-tasks-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

release-to-tasks-mcp

Turn one public release-note URL into ordered upgrade tasks that retain a source excerpt, anchor, confidence, and uncertainty. The MCP server never executes release text or project code.

Install

Node.js 22.14 or newer is required.

{
  "mcpServers": {
    "release-to-tasks": {
      "command": "npx",
      "args": ["-y", "release-to-tasks-mcp@0.1.0"]
    }
  }
}

For a clean local invocation before npm publication:

npm ci
npm test
node dist/index.js

Tool

release_url_to_tasks

{
  "release_url": "https://github.com/modelcontextprotocol/python-sdk/releases/tag/v2.1.1"
}

The result contains sourceFormat, releaseTitle, ordered tasks, and warnings. Every task includes the exact source URL/anchor and a short source excerpt. Low-confidence entries explicitly require human impact assessment.

Supported sources:

  1. GitHub release pages (resolved through the public GitHub API)
  2. GitHub release API URLs
  3. GitLab release pages
  4. Public Markdown/plain-text changelogs
  5. Public HTML release-note pages

Malformed URLs, non-HTTPS URLs, local/private destinations, unsupported pages, missing release bodies, oversized responses, and unsafe redirects return explicit errors.

Demo

  1. Configure the server in an MCP client.
  2. Call release_url_to_tasks with a real public release URL.
  3. Check each proposed task against its source.excerpt and source.url before applying an upgrade.

The repository includes a non-fabricated sample response shape. The sample deliberately contains no tasks because release content can change; tests contain deterministic source fixtures.

Privacy and security

Telemetry is disabled by default and there is no hosted collector. Optional local aggregate telemetry never includes URLs or release contents. See PRIVACY.md and SECURITY.md.

Future extension points

The parser and fetcher boundaries can later support authenticated private-source connectors. This release contains no payment, Stripe, private-source, or hosted-service dependency.

Development

npm ci
npm test
npm pack --dry-run

Internal tests and owner traffic are technical signals only; they never count as external adoption. LEVEL 2 requires three unrelated external users to install the public package and successfully process real release URLs.

License

MIT

Reviews

No reviews yet

Be the first to review this server!