Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@agentvee/mcp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@crabtransfer/mcp
MCP server for CrabTransfer — file uploads for AI agents with local filePath support.
Note: This is currently a test version. Full launch coming soon.
Quick Start
Get an API key at crabtransfer.com/dashboard
Add to your MCP config (e.g.
~/.cursor/mcp.json):
{
"mcpServers": {
"crabtransfer": {
"command": "npx",
"args": ["-y", "@crabtransfer/mcp"],
"env": {
"CRABTRANSFER_API_KEY": "your-api-key-here"
}
}
}
}- Restart your MCP client (Cursor, Claude Desktop, etc.)
Supported Clients
Any MCP client that supports stdio transport:
Available Tools
| Tool | Description |
|---|---|
upload_and_wait |
Upload a file and wait for a shareable download link |
upload_file |
Upload a file (returns upload ID for status polling) |
upload_from_url |
Upload a file from a public URL |
get_upload_status |
Check the status of an upload |
get_download_url |
Get the download URL for a completed upload |
Upload Methods
Each upload tool supports three mutually exclusive input methods:
filePath— Local file path (stdio only, most efficient for local files)url— Public URL for the server to fetchcontent— Base64-encoded file content
Environment Variables
| Variable | Required | Default | Description |
|---|---|---|---|
CRABTRANSFER_API_KEY |
Yes | — | Your CrabTransfer API key |
CRABTRANSFER_API_BASE_URL |
No | https://crabtransfer-api-develop.fly.dev |
API base URL |
CLI
npx @crabtransfer/mcp --help
npx @crabtransfer/mcp --versionLicense
MIT