npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@acronis-platform/mcp

v1.0.1

Published

Model Context Protocol (MCP) server exposing the Acronis Cyber Platform API as tools for AI assistants, with OAuth authentication, stdio/HTTP transports, and dynamic tool discovery.

Downloads

233

Readme

Acronis API MCP Server

Prerequisites

Quick Start

Configure your MCP client to run the server via npx -y @acronis-platform/mcp — npx downloads and runs the published package on demand, so no manual installation or build step is required.

Set authentication environment variables only if required by your API deployment.

Claude Desktop

Config file location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Open it via Claude menu > Settings > Developer > Edit Config, add the server entry, then restart Claude Desktop.

{
  "mcpServers": {
    "acronis-mcp": {
      "command": "npx",
      "args": ["-y", "@acronis-platform/mcp"],
      "env": {
        "API_BASE_URL": "https://mc-beta-cloud.acronis.com",
        "OAUTH_CLIENT_ID": "my-client",
        "OAUTH_CLIENT_SECRET": "my-secret"
      }
    }
  }
}

Claude Desktop MCP setup guide

GitHub Copilot (VS Code)

Create .vscode/mcp.json in your project root:

{
  "servers": {
    "acronis-mcp": {
      "command": "npx",
      "args": ["-y", "@acronis-platform/mcp"],
      "env": {
        "API_BASE_URL": "https://mc-beta-cloud.acronis.com",
        "OAUTH_CLIENT_ID": "my-client",
        "OAUTH_CLIENT_SECRET": "my-secret"
      }
    }
  }
}

After saving, click Start in the MCP panel, then open Copilot Chat in Agent mode to use the tools.

GitHub Copilot MCP setup guide

Devin

Add to .devin/config.json (team-wide) or .devin/config.local.json (personal, gitignored):

{
  "mcpServers": {
    "acronis-mcp": {
      "command": "npx",
      "args": ["-y", "@acronis-platform/mcp"],
      "env": {
        "API_BASE_URL": "https://mc-beta-cloud.acronis.com",
        "OAUTH_CLIENT_ID": "my-client",
        "OAUTH_CLIENT_SECRET": "my-secret"
      }
    }
  }
}

Or register via the CLI (no environment variables; edit the config file afterward to add env):

devin mcp add acronis-mcp -- npx -y @acronis-platform/mcp

Devin MCP configuration guide

HTTP transport

API_BASE_URL=https://api.example.com \
OAUTH_CLIENT_ID=my-client \
OAUTH_CLIENT_SECRET=my-secret \
MCP_TRANSPORT=http \
MCP_BEARER_TOKEN=shared-secret \
npm run start:http

Security: when client_credentials is configured (OAUTH_CLIENT_ID/OAUTH_CLIENT_SECRET), the server holds a privileged upstream token and reuses it for every caller. MCP_BEARER_TOKEN is therefore required in HTTP mode with client_credentials — the server refuses to start without it so the token is never exposed to unauthenticated callers.

Dynamic mode

Instead of registering all tools upfront, expose two meta-tools — _list_api_endpoints and _enable_api_endpoints — and let the client activate endpoints on demand:

MCP_DYNAMIC_TOOLS=true npm start

Environment variables

General

| Variable | Default | Description | |---|---|---| | API_BASE_URL | https://mc-beta-cloud.acronis.com | Upstream API base URL. May include a path prefix (e.g. https://api.example.com/api/v2). | | MCP_TRANSPORT | stdio | Transport: stdio or http | | MCP_INSTRUCTIONS | (baked default) | Usage instructions sent to MCP clients, overriding the built-in default | | MCP_INSECURE | false | Set to true to skip TLS certificate verification (dev/testing only) | | MCP_VERBOSE | false | Set to true to log forwarded request URLs and response status to stderr |

Tools

| Variable | Default | Description | |---|---|---| | MCP_TOOLS_INCLUDE | (all) | Comma-separated list of tool name patterns to expose. Supports * wildcards (e.g. get_*,list_*). Applied before MCP_TOOLS_EXCLUDE. | | MCP_TOOLS_EXCLUDE | (none) | Comma-separated list of tool name patterns to hide. Applied after MCP_TOOLS_INCLUDE. |

Authentication

| Variable | Default | Description | |---|---|---| | OAUTH_TOKEN_URL | /api/2/idp/token | OAuth token endpoint for client_credentials flow. An absolute URL (e.g. https://…/token) is used as-is; an absolute path (e.g. /api/2/idp/token) is resolved relative to API_BASE_URL. | | OAUTH_CLIENT_ID | — | OAuth client ID | | OAUTH_CLIENT_SECRET | — | OAuth client secret | | OAUTH_SCOPES | — | Comma-separated OAuth scopes (optional) |

HTTP transport

| Variable | Default | Description | |---|---|---| | MCP_HTTP_PORT | 3000 | Port to listen on | | MCP_HTTP_HOST | 127.0.0.1 | Host to bind to | | MCP_HTTP_ENDPOINT | /mcp | Path to mount the MCP endpoint on | | MCP_BEARER_TOKEN | — | Shared secret MCP clients must present to connect |

Dynamic mode

| Variable | Default | Description | |---|---|---| | MCP_DYNAMIC_TOOLS | false | Enable dynamic tool discovery | | MCP_MAX_TOOLS_ENABLED | 25 | Max simultaneously active tools (0 = unlimited) | | MCP_MAX_TOOL_RESULTS | 10 | Max results from _list_api_endpoints (0 = unlimited) |