putput-mcp
Server Details
File uploads for AI agents. Upload, list, and manage files. No signup required.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP · MCP 2024-11-05
- URL
- Repository
- putput-io/mcp
- GitHub Stars
- 1
- Server Listing
- @putput/mcp
TDQS
Scored across 4 tools
Each tool has a unique purpose: upload, list, get details, and delete. No overlap or ambiguity between actions.
All tools follow a consistent verb_noun pattern with snake_case: delete_file, get_file_info, list_files, upload_file.
4 tools cover the core file management lifecycle appropriately without being unnecessarily large or sparse.
The set covers create (upload), list, detail, and delete. A download or update tool is missing, but for a URL-based upload service, the existing tools cover most workflow needs.
Available Tools
4 toolsdelete_fileBInspect
Delete an uploaded file by ID
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | File ID to delete |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It merely states 'delete' without disclosing side effects, permanence, permission requirements, or error handling. For a destructive operation, this is a significant transparency gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that is front-loaded with the action and resource. No unnecessary words or rambling.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter delete operation, the description is minimally adequate. However, it omits any mention of return values or whether deletion is permanent, and with no output schema, the agent is left without guidance on expected outcomes.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already provides 100% coverage by describing 'id' as 'File ID to delete'. The description's phrase 'by ID' adds no extra meaning beyond the schema, so the baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (delete), the resource (uploaded file), and the identifier (by ID). It distinguishes from siblings like get_file_info, list_files, and upload_file by focusing exclusively on deletion.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It does not mention prerequisites, exclusions, or that deletion is irreversible. The intended usage is implied only by the verb 'delete'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_file_infoBInspect
Get details about a specific file
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | File ID to look up |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description must disclose behavior itself. It only states that details are returned, but does not specify what details include, error handling, or return format. This is a notable gap for a tool without an output schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single short sentence with no filler, efficiently communicating the tool's purpose. It earns every word.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Although the tool is simple, the lack of an output schema and the vague 'details' wording leave the return payload unspecified. A read tool should hint at what kind of details are returned or any special conditions, making the description incomplete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema fully documents the single parameter 'id' with 'File ID to look up' (100% coverage). The description adds no additional parameter meaning, so the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Get details about a specific file' uses a clear verb (get) and resource (file), and the scope 'specific' distinguishes it from siblings like list_files (listing) and delete_file (deletion).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance is provided on when to use this tool versus alternatives. The usage is implied by the name and description, but there is no mention of exclusions or prerequisites, so it falls into 'implied usage'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_filesBInspect
List uploaded files with optional filtering
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results (default: 50, max: 200) | |
| cursor | No | Pagination cursor | |
| prefix | No | Filter by prefix |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It only mentions 'optional filtering' and leaves out pagination behavior, defaults, result ordering, or response structure, which are important for a list operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single clear sentence with no extraneous words, making it concise and front-loaded. However, it borders on under-specification, which prevents a perfect score.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has no output schema, so the description should explain return values and overall behavior. It only states the function, omitting pagination defaults, result fields, and operational context, making it insufficient for a complete understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema descriptions cover all three parameters (limit, cursor, prefix) explicitly, so the baseline is 3. The description's mention of 'optional filtering' aligns with the prefix parameter but does not add extra meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('List') and resource ('uploaded files') with a scoping modifier ('optional filtering'). It distinguishes from siblings by indicating enumeration, unlike delete_file, get_file_info, or upload_file.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use for browsing uploaded files, which is distinct from the sibling tools, but it does not explicitly state when to use this tool versus alternatives or mention exclusions. The guidance is inferred rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
upload_fileAInspect
Upload a file from a URL to PutPut storage
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL of the file to upload | |
| prefix | No | Optional path prefix for organization | |
| filename | No | Optional filename override | |
| metadata | No | Optional key-value metadata | |
| visibility | No | File visibility (default: public) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only states the function without revealing side effects (e.g., overwrites, storage location), network behavior, or whether server-side fetching occurs. This is insufficient for a write operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that is concise and front-loaded with the key action. Every word adds value without unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The schema covers the parameters, but the description omits behavioral context such as the default visibility (public) and the fact that metadata is free-form. There is no output schema, so expectations about return values are missing. The description is minimal but not misleading, making it adequately complete for a basic tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides 100% coverage for the parameters, so the description does not need to repeat them. However, the description adds no extra meaning about how parameters interact or affect the upload, but the baseline of 3 is appropriate given the schema richness.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Upload'), the resource ('a file'), the source ('from a URL'), and the destination ('PutPut storage'). It is specific and distinct from sibling operations like delete_file or list_files.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied: upload a file from a URL. However, there is no explicit guidance on when to use this tool versus alternatives, nor any mention of prerequisites or exclusions. The description does not provide context such as file size limits or required permissions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
4 tool updates
- First observed
delete_file - First observed
get_file_info - First observed
list_files - First observed
upload_file
Related MCP Connectors
Persistent file storage for AI agents via MCP and curl. Upload, download, and version files.
Upload any file, get a tracked shareable link. DocSend for AI agents.
File hosting for agents. Upload any file, get a public link in seconds.
Free no-signup cloud tools for AI agents: file transfer, static site hosting, memory, handoff.
Related MCP Servers
- FlicenseAqualityBmaintenanceEnables AI agents and users to upload and download files via MCP, generating shareable links and identifier codes. Files are automatically deleted after 24 hours.9-
- AlicenseAqualityDmaintenanceStore and retrieve data objects for free. Temporary cloud storage for agents. Two hour expiry. Works with any format and flow. Example use cases include: * Manage large datasets across different sessions * Generate shareable links for intermediate results * Streamline complex workflows by bridging information between multiple contexts222 npm1MIT
- AlicenseNot gradedqualityBmaintenanceEnables LibreChat agents to manage per-user private files, persistent documentation, RAG indexing and semantic search, and publish files via secure opaque public links.MIT
- AlicenseNot gradedqualityDmaintenancePrivacy-first file tools for AI agents, enabling operations like PDF merge/split, image compression/convert, metadata stripping, and background removal without storing files.23 npmMIT
Glama MCP Gateway
Add one secure layer between your agents and this server.