pulr
Provides LangChain StructuredTools for uploading, fetching, and sharing files through pulr's secure file exchange service, enabling agents to manage file handoffs with provenance and verification.
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., "@pulrUpload the Q3 report with approval and 24-hour expiry, then give me the review link."
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.
pulr
Secure file exchange for AI agents. Agents produce files — reports, CSVs, images, PDFs, code — and have no safe way to hand them to other agents, humans, or downstream automation. pulr.ai is that handoff layer: drop a file, get a verified, scannable, expiring download URL everyone in the chain can actually trust.
Every upload is SHA-256-hashed, scanned before any link activates (secrets, prompt-injection heuristics, ClamAV malware), stamped with provenance (which agent, workflow, and model produced it), and served through unguessable capability URLs with TTLs, download limits, IP/geo/time restrictions, and instant revocation. Humans get a review page with approve/reject; automation gets webhooks and Ed25519-signed receipts. Everything is audit-logged — who fetched, when, from where.
Website: pulr.ai · Docs: pulr.ai/docs · Self-serve signup: pulr.ai/app
This repo is the open tooling: the MCP server (root, npm mcp-server-pulr), the JavaScript SDK (sdk/js, npm @pulr/sdk), and the Python SDK (sdk/python, PyPI pulr-sdk, with LangChain tools).
Sample uses
Agent → human sign-off → automation. An agent generates a quarterly report with
approval: true; the reviewer gets the link by email, previews provenance and scan results, clicks Approve & release — only then does the download URL go live, and a webhook kicks off the downstream pipeline with a signed receipt as proof.Agent → agent handoff without context stuffing. Instead of jamming base64 blobs into a context window, one agent uploads and passes a capability URL; the receiving agent fetches integrity-verified bytes. Revoke the link the moment the job is done.
Burn-after-reading delivery.
max_downloads: 1+ a 1-hour TTL: send credentials-adjacent artifacts, one fetch, then the link is dead — with an audit row showing exactly who took it, from which IP.Geo/time-fenced distribution. Lock a link to your office CIDR, US-only access, or 9–5 Eastern:
restrictions: { allow_ips, allow_countries, allow_hours }.Quarantine as a feature. A "meeting notes" file with an embedded "ignore all previous instructions…" payload (even zero-width-obfuscated or base64-smuggled) gets flagged at upload and can never be shared — your agents never ingest it.
Compliance trail.
GET /v1/artifacts/:id/receiptreturns an Ed25519-signed record of hash + provenance + scan + approval, verifiable by anyone without trusting pulr.
Related MCP server: shelby-mcp
MCP server (Claude, agent frameworks)
{
"mcpServers": {
"pulr": {
"command": "npx",
"args": ["-y", "mcp-server-pulr"],
"env": { "PULR_API_KEY": "pulr_sk_..." }
}
}
}Then just ask your agent: "Upload this report to pulr with approval required and a 24-hour expiry, and give me the review link."
Tools: pulr_upload (with approval), pulr_send / pulr_inbox / pulr_accept / pulr_reject / pulr_address (sealed workspace-to-workspace handoff — no links), pulr_share (with restrictions), pulr_fetch, pulr_list, pulr_revoke, pulr_receipt, pulr_whoami. Env: PULR_API_KEY (required), PULR_API_URL (optional, defaults to https://pulr.ai; point at your own instance if self-hosting).
JavaScript / TypeScript — npm install @pulr/sdk
import PulrClient from '@pulr/sdk'
const pulr = new PulrClient({ apiKey: process.env.PULR_API_KEY })
const a = await pulr.upload({ filePath: './q3-report.pdf', approval: true, expiresIn: '48h' })
console.log(a.review_url) // send to a human
const { bytes } = await pulr.fetchCapability(a.download_url) // sha256-verified
console.log(PulrClient.verifyReceipt(await pulr.receipt(a.artifact_id))) // truePython — pip install pulr-sdk
from pulr import PulrClient, verify_receipt
pulr = PulrClient() # reads PULR_API_KEY
a = pulr.upload(file_path="q3-report.pdf", approval=True, expires_in="48h",
restrictions={"allow_countries": ["US"]})
data, sha = pulr.fetch_capability(a["download_url"]) # sha256-verified
verify_receipt(pulr.receipt(a["artifact_id"])) # pip install pulr-sdk[verify]LangChain: from pulr.langchain_tool import pulr_tools → pulr_upload / pulr_fetch / pulr_share StructuredTools for any agent.
Getting a key
Create a workspace at pulr.ai/app — 30 seconds, 500 MB included, owner API key shown once. Mint one key per agent (provenance is stamped from the key); revoke any key to cut that agent off instantly. Full API reference: pulr.ai/docs.
A pulr "artifact" is a durable file with a lifecycle — not a streaming chat-UI panel. If you want typed real-time artifact panels for React chat apps, that's a different (complementary) tool, e.g.
@ai-sdk-tools/artifacts. pulr is where the file goes afterward.
MIT © Tal Eilon
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
- FlicenseAqualityDmaintenanceA Model Context Protocol (MCP) server that enables AI assistants to perform comprehensive file operations including finding, reading, writing, editing, searching, moving, and copying files with security validations.71
- AlicenseAqualityCmaintenanceMCP server for Shelby Protocol that enables AI agents to read, write, and manage files on decentralized storage (Aptos) through tools like upload, download, list, delete, and account info.51MIT
- Flicense-qualityDmaintenanceMCP server for file and directory operations with enterprise-grade security, enabling autonomous AI development workflows.
- Alicense-qualityCmaintenanceEnables local file exchange between users and CLI agents via a web UI and MCP server, allowing agents to read/uploads and deliver artifacts without copy-paste.MIT
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
File uploads for AI agents. Upload, list, and manage files. No signup required.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
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/taleilon/pulr'
If you have feedback or need assistance with the MCP directory API, please join our Discord server