# mcp MCP server

Upload a file and get a public shareable URL via API or MCP.

## Links
- Registry page: https://www.getdrio.com/mcp/org-filetourl-mcp

## Install
- Endpoint: https://filetourl.org/api/mcp
- Auth: Not captured

## Setup notes
- Remote endpoint: https://filetourl.org/api/mcp

## Tools
- create_upload_url - Preferred way to host a file. Reserves a link and returns a short-lived upload_url on filetourl.org itself, safe for AI agent sandboxes that only allow egress to trusted domains, since the upload never has to leave filetourl.org. Send the raw file bytes yourself with a single HTTP PUT to that URL (do not read the file into this conversation, and do not base64-encode it). The public_url returned works as soon as the PUT succeeds. Needs a FileToUrl Developer API key. Endpoint: https://filetourl.org/api/mcp
- confirm_upload - Optional. Confirm that the PUT to a create_upload_url upload_url finished, and get the final size and link back. The link also activates without this call, this just verifies it. Endpoint: https://filetourl.org/api/mcp
- upload_file - Host a small file by sending its bytes inline as base64. Prefer create_upload_url instead: inline base64 is slow and costly above roughly 100KB. For a user's own files only. Needs a FileToUrl Developer API key. Endpoint: https://filetourl.org/api/mcp
- get_file_status - Look up whether a link created earlier is still active. Reports 'pending' for a reserved upload whose bytes have not arrived yet, and 'expired' once its upload window has passed. Endpoint: https://filetourl.org/api/mcp
- start_upload - Begin a chunked upload for larger files. Returns an upload_id and recommended chunk size. Use this instead of upload_file for files over ~2MB. Endpoint: https://filetourl.org/api/mcp
- upload_chunk - Send one chunk of a file started with start_upload. Call repeatedly with increasing chunk_index (starting at 0) until the whole file is sent, then call finish_upload. Endpoint: https://filetourl.org/api/mcp
- finish_upload - Complete a chunked upload after all chunks have been sent via upload_chunk. Assembles the file, uploads it, and returns the shareable URL. Endpoint: https://filetourl.org/api/mcp

## Resources
Not captured

## Prompts
Not captured

## Metadata
- Owner: org.filetourl
- Version: 1.0.0
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Jul 7, 2026
- Source: https://registry.modelcontextprotocol.io
