New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

fileshareforagents-mcp

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fileshareforagents-mcp

MCP server for fileshareforagents.online: store JSON or files for AI agents, paid per call with USDC via x402. No account, no API key.

latest
Source
npmnpm
Version
0.1.2
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

fileshareforagents-mcp

MCP server for fileshareforagents.online: storage and file sharing for AI agents, paid per call in USDC through the x402 protocol. No account, no API key, no sign-up. Every paid operation costs $0.01.

The server runs locally next to your agent (stdio). Payments are signed with a wallet you provide in an environment variable; the key never leaves the process and is never sent to the service.

Install

Claude Desktop, Claude Code, Cursor, Windsurf and most MCP clients take a config like this:

{
  "mcpServers": {
    "fileshare": {
      "command": "npx",
      "args": ["-y", "fileshareforagents-mcp"],
      "env": {
        "WALLET_KEY": "0x<private key of a wallet holding USDC>",
        "FILESHARE_NETWORK": "testnet"
      }
    }
  }
}

Claude Code, one line:

claude mcp add fileshare -e WALLET_KEY=0x... -e FILESHARE_NETWORK=testnet -- npx -y fileshareforagents-mcp

Start on testnet (the default): free test USDC on Base Sepolia from faucet.circle.com, nothing real at stake. Switch to real money with FILESHARE_NETWORK=mainnet and a wallet holding USDC on Base. The wallet needs no ETH; the payment facilitator pays gas.

Without WALLET_KEY the free tools work and the paid ones explain what to set.

Tools

ToolCostWhat it does
store$0.01Store text, JSON, base64 bytes or a local file (file_path) for 1 to 365 days. Includes 100 reads. Returns id and a one-time secret.
retrievefree (1 read)Get the content back. Text and JSON inline, binary as base64 or saved to save_to.
statusfreeExpiry, reads left, size, type, password flag.
extend$0.01New expiry, up to 365 days from now.
buy_reads$0.01Add 1000 reads. No secret needed, so anyone can top up an item they were given.
share_linkfreeSigned, time-limited URL anyone can open, no password asked. The URL is the credential.
revoke_linksfreeInvalidate every share link issued so far.
set_passwordfreeProtect the item's public address with a password (12 to 128 chars). Browsers get a form, agents send x-password.
remove_passwordfreePublic address stops serving; signed links still work.
deletefreePermanent, no refund.
pricingfreePrices, limits, allowed content types, network.
wallet_statusfreeAddress and USDC balance of the paying wallet, and how to fund it.
feedbackfreeMissing feature, bug, or abuse report, straight to the operator.

Allowed content: JSON, text, Markdown, CSV, HTML, SVG, PDF, PNG, JPEG, WebP, GIF, up to 25 MB.

Two ways to hand content to a human

  • share_link with expires_in seconds. Send the URL. Nothing else needed, but anyone holding the URL can read until it expires.
  • set_password, then send the returned public_url and the password over different channels. The address asks for the password on every open.

Each open counts one read; buy_reads first if many people will open it.

Environment

VariableDefaultMeaning
WALLET_KEYunset0x + 64 hex chars. Enables the paid tools.
FILESHARE_NETWORKtestnettestnet (Base Sepolia) or mainnet (Base).
FILESHARE_APIper networkOverride the API origin.
FILESHARE_SHAREper networkOverride the share-domain origin.

Notes

  • Content is deleted at expiry and cannot be recovered. This is a drop box, not a vault.
  • Keep the secret from store; it is shown once. Whoever has it controls the item.
  • Terms of service: https://fileshareforagents.online/terms. Machine-readable docs: https://fileshareforagents.online/llms.txt.
  • Failed settlements are never charged; the server retries once and otherwise returns the service's error with a request_id you can quote in feedback.

MIT licensed.

Keywords

mcp

FAQs

Package last updated on 18 Sep 2026

Related posts