
Masv
- 5 repo stars
- Updated May 1, 2026
- getmasv/masv-mcp-server
MASV MCP is a MCP server that exposes MASV large-file transfer API operations to agents via a local npm stdio server.
About
MASV MCP is a local Model Context Protocol server that wraps the MASV large-file transfer API so AI coding agents can create and manage transfers programmatically. Developers and small studios shipping products that ingest or deliver multi-gigabyte assets—video, raw footage, design archives—use it during build when they would otherwise context-switch to the MASV web UI or custom scripts. Installation flows through the npm package @getmasv/masv-mcp-server with stdio transport; you supply MASV_TEAM_ID and a secret MASV_API_KEY, and you can enable deletes only when MASV_ALLOW_DELETE is set true. The integration is narrowly focused on MASV’s reliable secure transfer fabric, not general object storage. It helps during build and ship when collaborators or customers must receive large packages, and during operate when you automate recurring delivery pipelines. Pair it with your own backend only if you need business logic beyond what MASV portals and packages already provide.
- Stdio npm package @getmasv/masv-mcp-server (version 0.0.5)
- Requires MASV_TEAM_ID and MASV_API_KEY environment variables
- Optional MASV_ALLOW_DELETE gate for destructive package and portal operations
- Targets reliable secure large file transfer instead of ad-hoc cloud links
- Fits video, post-production, and agency-style deliverable workflows
Masv by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
claude mcp add --env MASV_TEAM_ID=YOUR_MASV_TEAM_ID --env MASV_API_KEY=YOUR_MASV_API_KEY --env MASV_ALLOW_DELETE=YOUR_MASV_ALLOW_DELETE masv -- npx -y @getmasv/masv-mcp-serverAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 5 |
|---|---|
| Package | @getmasv/masv-mcp-server |
| Transport | STDIO |
| Auth | Required |
| Last updated | May 1, 2026 |
| Repository | getmasv/masv-mcp-server ↗ |
What it does
Wire your agent to MASV’s large-file transfer API so portals, packages, and secure uploads happen from the IDE without clicking through the MASV dashboard.
Who is it for?
Best when you're already on MASV and want Claude Code or Cursor to orchestrate large secure transfers inside the repo.
Skip if: Skip if you have only small Git-sized artifacts, no MASV subscription, or needs met by generic S3-style storage without accelerated transfer.
What you get
After configuring team ID and API key, your agent can drive MASV packages and portals from the MCP tool surface during build and delivery workflows.
- Agent-triggered MASV package and portal operations
- Documented env-based MCP server config for the team
- Safer large-file paths for collaborators without manual dashboard work
By the numbers
- npm package @getmasv/masv-mcp-server version 0.0.5
- Stdio MCP transport
- Three documented environment variables including optional delete toggle
README.md
MASV MCP Server
⚠️ Experimental Server: This is an experimental MCP server created to gauge interest and integration potential. It has not been subject to our rigorous internal verification processes. Further support and updates will be provided on a best effort basis. We want to hear from you ! If you have any questions or issues, please contact us at support@masv.io.
An MCP (Model Context Protocol) server that provides LLMs with tools to interact with the MASV API.
What is MASV?
MASV is an easy-to-use and ultra-reliable managed file transfer service designed for teams of all sizes. It allows users to send and receive massive files without size limits, while ensuring data integrity and security through its robust cloud infrastructure that supports cloud, on-prem, and hybrid workflows.
Learn more https://massive.io/
Installation
The server can be run directly with npx without installation, or installed globally if preferred:
# Run directly with npx (recommended)
npx @getmasv/masv-mcp-server
# Or install globally
npm install -g @getmasv/masv-mcp-server
Configuration
Required Environment Variables
The server requires the following environment variables to authenticate with the MASV API:
MASV_TEAM_ID- Your MASV team identifierMASV_API_KEY- Your MASV API authentication key
Optional Environment Variables
MASV_ALLOW_DELETE- Set totrueto allow LLM use package and portal deletion tools (default:false)
MCP Client Configuration
Add the server to your MCP client configuration file:
{
"mcpServers": {
"masv": {
"command": "npx",
"args": ["-y", "@getmasv/masv-mcp-server"],
"env": {
"MASV_TEAM_ID": "your-team-id",
"MASV_API_KEY": "your-api-key"
}
}
}
}
Note: The -y flag automatically confirms the package execution without prompting.
Available Tools
The server provides the following tools for LLM interaction:
Package Management
get_packages- List team packagesget_package- Get package details by IDget_portal_packages- List packages uploaded to portalsget_package_files- List files in a packageget_package_transfers- Get package transfer historyupdate_package_expiration_date_and_time- Modify package expirationdelete_package- Delete a package (requiresMASV_ALLOW_DELETE=true)
Portal Management
get_portals- List all portalsget_portal- Get portal details by IDcreate_portal- Create a new portalupdate_portal- Update portal configurationdelete_portal- Delete a portal (requiresMASV_ALLOW_DELETE=true)
Activity Tracking
get_activities- List activities and eventsget_activity_events- Get event history for an activityget_activities_information- Get detailed activity state descriptions
Integration Management
get_integrations- List connected storage integrationssend_package_to_integration- Transfer package to connected storagelist_files_on_integration- Browse files on cloud integrationslist_files_on_storage_gateway- Browse files on Storage Gatewaytransfer_files_from_integration- Transfer files from storage to MASV (works with both cloud and MASV Storage Gateway)
Team Management
get_team_members- List team members and their details
License
MIT
Support
For questions, issues, or feedback please contact us at support@masv.io.
Development
Install dependencies
npm install
Build
npm run build
Use MCP server
In LLM chat application add command to start the server:
node /path/to/masv-mcp-server/build/index.js
To run MCP inspector to inspect and execute tools
npm run inspector
Recommended MCP Servers
How it compares
Single-vendor large-file transfer MCP, not a multi-tool business-data or package-manager server.
FAQ
Who is MASV MCP for?
It is for developers and producers who use MASV for secure large transfers and want their coding agent to call MASV API tools from the terminal.
When should I use MASV MCP?
Use it while building or shipping features that create portals, send packages, or automate client deliverable uploads through MASV.
How do I add MASV MCP to my agent?
Install @getmasv/masv-mcp-server from npm, set MASV_TEAM_ID and MASV_API_KEY, optionally MASV_ALLOW_DELETE, and register the stdio server in your MCP client config.