mcp-exports
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-exportsCreate a single-use download link for this week's call records CSV."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-exports
Shared, single-use download host for the house MCP servers.
https://exports.example.com · host port 8114 · no customer login
MCP server --POST /put (service token)--> mcp-exports --> download URL
customer --GET /d/{token} (no auth) --> mcp-exports --> the file, onceWhy it exists
A tool that returns a week of call records inline costs ~530,000 tokens; the same data as CSV is 1 MB and builds in 1.6 seconds. So exports return a link. The first version served that link from the MCP server itself, which broke three ways:
The MCP hosts sit behind an Anthropic-only IP allow-list, but the thing fetching a download is a customer's browser on an arbitrary address. A separate hostname keeps the two access policies from fighting, instead of carving a path exemption out of a proxy config that also carries the streaming settings MCP needs.
MCP containers redeploy on every push, and an in-memory store died with them — invalidating live links mid-conversation.
The store belonged to one process, so a second worker would 404 at random.
Related MCP server: agent-secret
Security model, stated plainly
A download URL is a capability: whoever holds it gets the file, no login. Same trade as the NetSapiens recording URLs and Odoo portal PDFs we already hand out, and it is what makes a link work when clicked from a chat window. It is not authentication, and the weaknesses are real — a URL can be forwarded, logged by a proxy, or sit in a transcript forever.
So the design leans on what actually helps:
Control | Why |
Single use (default | The bytes are deleted once collected, so a link leaked afterwards is already dead. Strongest control available, because a capability URL cannot be un-shared. |
Short TTL — 1 h data, 15 min financial | Shrinks the window. Money gets less of it. |
256-bit | Not guessable, not enumerable |
Identical 404 for missing / malformed / expired / spent | Nothing learnable from the difference |
| An HTML or SVG export must never render on our origin — that would make this host a stored-XSS vector |
| Not cached, not indexed, no referer leak |
Access log with token prefix only | Enough to correlate upload↔download; not enough to rebuild a working URL from a log more people can read than the file |
Uploading is authenticated — a per-server bearer token, because publishing files on a public host is not something the internet gets to do. The service refuses to start with an empty allow-list.
API
POST /put?filename=x.csv&sensitivity=data|financial&customer=Acme%20Movers
&ttl=3600&max_downloads=1
Authorization: Bearer <server token>
-> 201 {download_url, filename, size, expires_in_seconds, expires_at,
max_downloads, single_use}
GET /d/{token} -> 200 the file (then it is gone), or 404
GET /healthz -> counters + bytes heldttl is clamped, not obeyed — ask for a week, get MCP_EXPORTS_TTL_MAX, and
the response tells you what you actually got.
Using it from an MCP server
Copy client/export_client.py into the server and set
MCP_EXPORTS_URL + MCP_EXPORTS_TOKEN. ExportClient.from_env() returns None
when unconfigured, so a server can offer export tools only where the host is
actually wired up rather than advertising a tool that always fails.
It raises rather than falling back to inline rows: if the host is down there is no safe degradation, because returning the rows is the failure mode exports exist to prevent.
Deploy
Portainer → Stacks → Repository, refs/heads/main, port 8114. Generate a token
per MCP server:
python -c "import secrets; print(secrets.token_urlsafe(32))"NPM: exports.example.com → 10.0.0.10:8114, no Access List (that is
the point), Websockets off, standard timeouts.
Tests
python -m pytest tests -q47 tests, no network. They cover the security properties specifically: single
use actually deletes bytes, every bad token shape is indistinguishable, filenames
cannot escape or inject headers, financial TTL is shorter, and the Dockerfile
chowns the volume mount point before dropping root — without which a named
volume arrives root-owned and every upload fails EACCES.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityFmaintenanceProvides secure OAuth2-based credential management for MCP servers, allowing agents to obtain short-lived token references without exposing raw secrets.718MIT
- AlicenseNot gradedqualityAmaintenanceMCP server for one-time secret sharing, enabling AI agents to securely claim and store secrets (e.g., API keys) via claim codes without exposing them in chat transcripts.3MIT
- FlicenseNot gradedqualityBmaintenanceEnables sharing self-contained HTML files via public or access-key-protected private links. Provides MCP tools to create shares, retrieve public share metadata, and describe the service.2
- FlicenseNot gradedqualityBmaintenanceMCP server for end-to-end encrypted secret storage and retrieval, enabling LLM agents to fetch secrets by name via one-time URLs while keeping plaintext out of model context and logs.1
Related MCP Connectors
An authenticated remote MCP server for user-owned devices and one-shot capability invocation.
MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.
Remote MCP for C2PA intake verifier MCP, structured receipts, audit logs, and reviewer-ready evidenc
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/JohnGilligan2/mcp-exports'
If you have feedback or need assistance with the MCP directory API, please join our Discord server