MCP for the Files.com API
Project description
Files.com MCP Server
Modern AI models like ChatGPT and Claude are no longer just answering questions—they’re taking action. With Files.com MCP, you can securely give LLMs controlled access to real-world operations inside your Files.com environment.
Whether it's uploading, downloading, querying folders, or managing users, MCP enables your AI agent to interact with your Files.com infrastructure as if it were an extension of your team—without compromising on security, auditability, or control.
What Is MCP?
Model Context Protocol (MCP) is a structured interface that lets Large Language Models call real APIs as part of their workflow. Think of it as a way to “hand tools” to the LLM—where the tools are real, authenticated functions from your Files.com environment.
When integrated via MCP, your LLM can:
-
Transfer files between cloud and on-prem systems
-
Query folders or file metadata
-
Create and manage users
-
Automate workflows like archival or sharing
-
And much more
MCP turns the LLM from a passive assistant into an active file operations agent.
What is Files.com?
Files.com is the modern platform for secure file transfer, automation, and storage integration. Used by thousands of enterprises, Files.com connects cloud apps, on-prem systems, and human workflows—all through a single, powerful interface.
With robust APIs, native protocol support (SFTP, FTPS, AS2, and more), and enterprise-grade access controls, Files.com is built to move your files—reliably, securely, and at scale.
Common Use Cases
AI Assistants for Operations Teams: Let your internal chatbot fetch or archive files on request.
Automated LLM Workflows: Build AI agents that react to incoming support requests, then retrieve or upload the necessary files from your environment.
Developer Copilots: Enable your dev-focused LLMs to create users, provision folders, or debug via real-time file access.
Important Information
Large Language Models perform best when their toolset is focused. If you're integrating with Files.com MCP and noticing inconsistent tool usage, your LLM may be overloaded with too many available functions.
Most LLM clients allow you to selectively enable or disable tools exposed through MCP. For best results, only include the specific tools your agent needs for its task. This reduces ambiguity and improves the model’s ability to pick the right operation every time.
Using with Claude
To install into Claude you have to add JSON to the claude_desktop_config.json
An official tutorial can found here: https://modelcontextprotocol.io/quickstart/user#2-add-the-filesystem-mcp-server
To add our MCP, add the following JSON (be sure to change the path and FILESCOM_API_KEY value)
NOTE: This version assumes you are running from source. Once we have PyPi publishing this README will have them version as well.
uv Required
These examples require uv which is a popular modern environment manager for running isolated python tools. You will need to install it first.
Claude Config
{
"mcpServers": {
"mcp-proxy": {
"type": "stdio",
"command": "uvx",
"args": [
"files-com-mcp"
],
"env": {
"FILES_COM_API_KEY": "CHangeME"
}
}
}
}
Development
While our MCP works well out-of-the-box, some power users find value in modifying MCP code to suit their unique needs. For those power users, it is recommended to use STDIO mode. Upload and Download tools rely on the file system where the MCP is running.
To test LLM tools we recommend a popular command-line program called inspector. This will start a WebUI on a local port, the output of the command will give you the link to the inspector GUI.
Ex: http://127.0.0.1:6274
Develoment - STDIO
FILESCOM_API_KEY="dummyKey" npx @modelcontextprotocol/inspector uv run -m files_com_mcp
Development - SSE
FILESCOM_API_KEY="dummyKey" uv run -m files_com_mcp --mode server --port 12345
Launch the inspector
npx @modelcontextprotocol/inspector
Development Claude Config
{
"mcpServers": {
"files_com_mcp": {
"type": "stdio",
"command": "uv",
"args": [
"--directory",
"/path/to/folder-containing-files_com_mcp",
"run",
"-m",
"files_com_mcp"
],
"env": {
"FILES_COM_API_KEY": "CHangeME"
}
}
}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file files_com_mcp-1.0.8.tar.gz.
File metadata
- Download URL: files_com_mcp-1.0.8.tar.gz
- Upload date:
- Size: 15.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d443677bd57e5689e3e91703d6da853a0e03daf6a2b4258788dd0dd69c7df43b
|
|
| MD5 |
f36380081278892d575e7162114bd152
|
|
| BLAKE2b-256 |
0507540b57bf930b98f2dd9b7d2a761f028099ff9ab889aaaa978f6813349c60
|
File details
Details for the file files_com_mcp-1.0.8-py3-none-any.whl.
File metadata
- Download URL: files_com_mcp-1.0.8-py3-none-any.whl
- Upload date:
- Size: 23.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4cc29c06508dd662781dd30dffe22ea1173b9f24218482cc65f2318d49c7a7b
|
|
| MD5 |
74a7510b0097282700d521bde6dc79de
|
|
| BLAKE2b-256 |
2fbee43b7bd1f8e937a0634db22d793874d5f67327fcf107e22f35953b7200f7
|