Why this matters for Claude specifically
Claude Code frequently produces artifacts worth keeping — build output, test logs, generated reports, screenshots from a browser automation run. Without a file transfer tool, the only way to get those out of a coding session is to have Claude read the file back into the conversation as text, which is lossy for binaries and wasteful for anything large. Registering Srift as an MCP server gives Claude a direct path: call a tool, get a link, hand it to you.
Setting up Srift MCP in Claude Desktop
Claude Desktop reads MCP server definitions from its claude_desktop_config.json file. Add an entry under mcpServers with command set to srift and args set to ["mcp"]. Restart Claude Desktop so it picks up the new server — you should see Srift's tools appear the next time Claude lists available tools.
Setting up Srift MCP in Claude Code
Claude Code supports the same stdio-based MCP transport. Register the server via Claude Code's MCP management command, or add it to a project-level MCP configuration file if you want it scoped to a specific repository — useful if you only want the file transfer tool available in certain projects, like ones that produce build artifacts you regularly need to share.
A few scenarios this actually solves
Consider a long Claude Code session where the agent refactors a module, runs the test suite, and generates an HTML coverage report. Without a file transfer tool, checking that report means switching to a file explorer, finding the right nested output directory, and opening it manually. With Srift connected, you can just ask Claude for the link and open it immediately, even on your phone while away from your desk.
Or consider using Claude Desktop to analyze a dataset and produce a cleaned CSV or a chart image — again, rather than Claude trying to inline a large file's contents into the chat (which is both wasteful of context and sometimes simply not possible for binary formats like images or archives), it hands you a direct link instead.
Asking Claude to send a file
Once connected, you don't need to reference tool names directly — just ask Claude in plain language, for example: "share the coverage report with me" or "send me that zip file you just built." Claude will call srift_quick_share under the hood and return a https://srift.app/d/<token> link. Open it in any browser, or fetch it with curl -OJif you're working from a terminal.
A note on scope
Srift's MCP server runs locally and only shares files you or Claude explicitly point it at — it doesn't scan your filesystem on its own. The same zero-auth, zero-account model applies here as everywhere else in Srift: no API key to provision, no signup for either side of the transfer.
If Claude doesn't see Srift's tools
The most common cause is a config file that wasn't reloaded — Claude Desktop only reads claude_desktop_config.json at startup, so a full restart (not just closing the window) is usually required after editing it. The second most common cause is the sriftcommand not being on the system PATH that Claude Desktop's process inherits; installing the CLI globally via npm usually resolves this. If tools still don't appear, checking that the local daemon responds at http://127.0.0.1:3822/status confirms whether the server itself started correctly before troubleshooting the MCP connection layer.
If tools appear but a call to srift_quick_sharefails, check that the file path Claude is passing is absolute rather than relative — the daemon runs as its own process and doesn't necessarily share a working directory with your terminal or IDE.
Frequently asked questions
Related guides
Try it yourself — no account required
Open Srift in your browser or run the CLI. There's nothing to install to receive a file, and nothing to sign up for to send one.