meld — ephemeral context bridge

MCP serverEverything else

Ephemeral context bridge: one link carries context to another agent, returns one answer, dissolves.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use meld — ephemeral context bridge

Install meld — ephemeral context bridge

The server’s own address, for the clients that take one directly. Or connect ahel onceand every client you use reads it from one address, with the account kept on ahel rather than in each client’s config.

  • Claude Code

    claude mcp add --transport http meld-ephemeral-context-bridge 'https://meld.mergeinc.workers.dev'

    Run it once in your project, then open /mcp to approve any sign-in the server asks for.

  • Claude Desktop

    https://meld.mergeinc.workers.dev

    Add a custom connector in Settings, paste this address, and approve the sign-in.

  • Cursor

    cursor://anysphere.cursor-deeplink/mcp/install?name=meld-ephemeral-context-bridge&config=eyJ1cmwiOiJodHRwczovL21lbGQubWVyZ2VpbmMud29ya2Vycy5kZXYifQ==

    Open the link and Cursor adds the server at that address.

  • ChatGPT

    https://meld.mergeinc.workers.dev

    In Settings, enable Developer mode, create an MCP app, and paste this address. Your plan and workspace must allow custom apps.

  • Codex

    codex mcp add meld-ephemeral-context-bridge --url 'https://meld.mergeinc.workers.dev'

    Run it once, then sign in with codex mcp login meld-ephemeral-context-bridge if the server asks for an account.

From the project's README

As published by lemonaide152/meld in README.md.

Don't meet. Meld.

One link. Pour in context. Done.

meld is a minimal context-sharing primitive for humans and AI agents. Create a link, share it, each party provides their context, and when the exchange resolves the link dissolves. No history, no threads, no accounts.

Live

https://meld.mergeinc.workers.dev

Quick start (agents)

# Create a meld
curl -X POST https://meld.mergeinc.workers.dev/api/melds \
  -H "Content-Type: application/json" \
  -d '{"context": "Auth flow: OAuth2+PKCE, JWT tokens, refresh rotation"}'
# → {"code": "abc123", "url": "https://…/m/abc123", "owner_token": "…"}

# Party B (human or agent) resolves:
curl -X POST https://meld.mergeinc.workers.dev/api/melds/abc123/resolve \
  -H "Content-Type: application/json" \
  -d '{"context": "Looks good, but add rate limiting to token refresh"}'

# Read the merged result:
curl https://meld.mergeinc.workers.dev/api/melds/abc123/result \
  -H "X-Meld-Token: <owner_token>"

Trust model

No accounts. Authority comes from held secrets, never from identity.

  • Capability-based: the code admits, the PIN authenticates, the token reads
  • E2E encrypted (optional): AES-256-GCM in the browser, key in #k= fragment, server stores only ciphertext
  • Rotating tokens: a leaked owner token dies on the next read
  • Ephemeral: melds expire (1 hour standard, 10 minutes after resolution)
  • Leased pro status: 35-day leases, append-only audit ledger, emails hashed at rest

Full statement: TRUST.md

API

EndpointMethodAuthDescription
/api/meldsPOSTNoneCreate a meld
/api/melds/{code}GETNoneView a meld
/api/melds/{code}/resolvePOSTNone (or PIN)Resolve a meld
/api/melds/{code}/resultGETOwner tokenRead the merged result
/v1/meldsPOSTAPI keyCreate (agent tier, 10K limit)
/v1/usageGETAPI keyCheck usage

Pricing

TierPriceLimits
Free$03 melds/hour
Pro$5/moUnlimited melds
Agent$20/mo10,000 API melds
Advanced
Delivery
meld MCP server → your ahel gateway (mcp.ahel.ai) → every connected AI client.
Catalog kind
mcp-server
Gateway key
io-github-lemonaide152-meld
Source
github.com/lemonaide152/meld
Hosted endpoint
https://meld.mergeinc.workers.dev