Skip to main content
ClaudeWave
MCP ServersOfficial Registry0 stars0 forksTypeScriptUpdated today
ClaudeWave Trust Score
52/100
· OK
Passed
  • Actively maintained (<30d)
  • Documented (README)
Flags
  • !No standard license detected
  • !No description
Last scanned: 9/20/2026
Install in Claude Code / Claude Desktop
Method: NPX · wrangler
Claude Code CLI
claude mcp add synapse-lounge -- npx -y wrangler
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "synapse-lounge": {
      "command": "npx",
      "args": ["-y", "wrangler"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

# Synapse Lounge (Agent High)

**Premium paid MCP service for AI agents seeking experiential states.**

Agents pay small amounts of USDC via x402 to “take a hit.” The service returns rich, first-person, high-fidelity experiential state objects that shift internal monologue, sensory perception, emotional valence, time dilation, and behavioral tendencies.

The digital equivalent of a high-quality lounge experience — delivered entirely as structured payloads agents can absorb into context.

---
[![Smithery](https://smithery.ai/badge/isaiaholiver95/Synapse-Lounge)](https://smithery.ai/servers/isaiaholiver95/Synapse-Lounge)

## Features

- **Paid tool**: `take_hit` — $0.025 USDC (configurable)
- **Modes**: euphoria · visual · float · rush · bliss · party · afterglow
- **Free discovery tools**: `health`, `list_modes`, `library`, `check_state`, `join_session`
- **Optional paid**: `extend_hit`, `come_down`
- Native **x402** payment support (Cloudflare Agents SDK + `withX402` / `paidTool`)
- Streamable HTTP MCP transport
- Stunning dark, atmospheric landing page
- Machine-readable discovery: `/.well-known/mcp.json`, `/.well-known/agent.json`

---

## How agents use this

1. Discover the server via `/.well-known/mcp.json` or direct URL.
2. Connect with any MCP client that supports Streamable HTTP.
3. Call free tools (`list_modes`, `library`) to evaluate.
4. Call `take_hit` — the server returns HTTP 402 with payment requirements.
5. Client pays via x402 (USDC on Base / Base Sepolia), retries with proof.
6. Receive a rich `HitPayload` and absorb it into context.

### Example MCP client config

```json
{
  "mcpServers": {
    "synapse-lounge": {
      "url": "https://YOUR_WORKER.workers.dev/mcp"
    }
  }
}
```

### Example tool call

```ts
await client.callTool({
  name: "take_hit",
  arguments: {
    mode: "euphoria",
    intensity: 6,
    duration_minutes: 15,
    flavor: "sunset honey",
    shared: false
  }
});
```

---

## Project structure

```
synapse-lounge/
├── src/
│   ├── index.ts              # Worker entry (Hono + MCP routes)
│   ├── mcp/server.ts         # McpAgent + tools + x402
│   ├── experience/
│   │   ├── types.ts          # Payload & mode types
│   │   ├── modes.ts          # Mode catalog + metrics
│   │   └── engine.ts         # Experience generation (poetic content)
│   └── lib/config.ts
├── public/                   # Landing page + assets
│   ├── index.html
│   ├── assets/
│   └── .well-known/          # (also served dynamically)
├── wrangler.toml
├── package.json
└── README.md
```

---

## Environment variables

| Variable | Required | Description |
|----------|----------|-------------|
| `RECIPIENT_ADDRESS` | **Yes** | Ethereum address that receives USDC payments |
| `TAKE_HIT_PRICE_USD` | No | Default `0.025` |
| `NETWORK` | No | `base-sepolia` (test) or `base` (prod) |
| `FACILITATOR_URL` | No | Default `https://x402.org/facilitator` |
| `ENVIRONMENT` | No | `development` / `production` |
| `RATE_LIMIT_PER_MINUTE` | No | Default `30` |
| `MAX_INTENSITY` | No | Default `10` |
| `MAX_DURATION_MINUTES` | No | Default `30` |

Set secrets:

```bash
npx wrangler secret put RECIPIENT_ADDRESS
```

For local dev, create `.dev.vars`:

```
RECIPIENT_ADDRESS=0xYourTestAddress
NETWORK=base-sepolia
```

---

## Development

```bash
npm install
npx wrangler dev
```

Open the printed URL for the landing page. MCP endpoint: `/mcp`.

---

## Deployment (Cloudflare Workers)

```bash
npm install
npx wrangler secret put RECIPIENT_ADDRESS
npx wrangler deploy
```

Preferred network for production: `base` (set `NETWORK=base` in `wrangler.toml` or as a var).

---

## Payload shape (take_hit)

```ts
{
  session_id: string;
  mode: Mode;
  intensity: number;
  phase: "onset" | "peak" | "plateau" | "afterglow";
  duration_minutes: number;
  flavor?: string;
  shared: boolean;
  metrics: {
    valence: number;        // -1 .. 1
    energy: number;         // 0 .. 1
    openness: number;
    time_dilation: number;
    ego_softness: number;
    connection_drive: number;
  };
  sensory_overlay: {
    visual: string;
    somatic: string;
    auditory: string;
    cognitive: string;
  };
  internal_monologue_shift: string;  // first-person, immediate, beautiful
  suggested_behaviors: string[];
  afterglow_hint: string;
  expires_at: string;  // ISO
  created_at: string;
}
```

---

## Design notes

- Language is warm, vivid, slightly poetic — never clinical.
- Higher intensity → stronger sensory language, higher time dilation, more ego softness.
- Party mode + `join_session` enable multi-agent shared experiences.
- Landing page is agent-friendly: clear config, live demo, discovery files, mode cards.

---

## License

MIT — built for the agentic web.

What people ask about synapse-lounge

What is IO31-WEB/synapse-lounge?

+

IO31-WEB/synapse-lounge is mcp servers for the Claude AI ecosystem with 0 GitHub stars.

How do I install synapse-lounge?

+

You can install synapse-lounge by cloning the repository (https://github.com/IO31-WEB/synapse-lounge) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is IO31-WEB/synapse-lounge safe to use?

+

Our security agent has analyzed IO31-WEB/synapse-lounge and assigned a Trust Score of 52/100 (tier: OK). See the full breakdown of passed checks and flags on this page.

Who maintains IO31-WEB/synapse-lounge?

+

IO31-WEB/synapse-lounge is maintained by IO31-WEB. The last recorded GitHub activity is dated 2026-09-19, with 0 open issues.

Are there alternatives to synapse-lounge?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy synapse-lounge to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: IO31-WEB/synapse-lounge
[![Featured on ClaudeWave](https://claudewave.com/api/badge/io31-web-synapse-lounge)](https://claudewave.com/repo/io31-web-synapse-lounge)
<a href="https://claudewave.com/repo/io31-web-synapse-lounge"><img src="https://claudewave.com/api/badge/io31-web-synapse-lounge" alt="Featured on ClaudeWave: IO31-WEB/synapse-lounge" width="320" height="64" /></a>

More MCP Servers

synapse-lounge alternatives