Usagewall MCP Server

UsageWall — landing + waitlist endpoint. Static HTML + Vercel serverless functions.

Remote serverstreamable-httpGo

What is the Usagewall MCP server?

Usagewall MCP server exists for a simple reason — assistants are far more useful when they can act on Usagewall directly instead of describing what you should do. UsageWall — landing + waitlist endpoint. Static HTML + Vercel serverless functions.

What you get

Install in Claude.ai: > Settings → Connectors → Add custom connector → paste https://usagewall.vercel.app/api/mcp

Setting it up

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

Configuration and credentials

You will need 5 environment variables: UNSUBSCRIBE_SECRET, SUPABASE_URL, SUPABASE_SERVICE_ROLE_KEY, RESEND_API_KEY, PUBLIC_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Choosing this one

This sits in the cloud and infrastructure group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. It is maintained by agenciabakucl-coder; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Usagewall's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Before you rely on it

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the usagewall mcp server does with a few real requests.

How to install the Usagewall MCP server

{
  "mcpServers": {
    "usagewall": {
      "command": "npx",
      "args": ["-y", "vercel"],
      "env": {
        "UNSUBSCRIBE_SECRET": "your-value",
        "SUPABASE_URL": "your-value",
        "SUPABASE_SERVICE_ROLE_KEY": "your-value",
        "RESEND_API_KEY": "your-value",
        "PUBLIC_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
UNSUBSCRIBE_SECRETCredential the server authenticates with.Yes
SUPABASE_URLEndpoint or connection string the server talks to.Yes
SUPABASE_SERVICE_ROLE_KEYCredential the server authenticates with.Yes
RESEND_API_KEYCredential the server authenticates with.Yes
PUBLIC_URLEndpoint or connection string the server talks to.Yes

Frequently asked questions

It connects Usagewall to MCP-compatible AI assistants such as Claude and Cursor. Instead of copying data back and forth by hand, the assistant works with Usagewall directly.