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

@lazyrelay/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lazyrelay/mcp-server

MCP server for LazyRelay: schedule posts, check analytics, and read mentions from any MCP-compatible AI agent. Local (stdio, API key) or hosted (OAuth, no install).

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

LazyRelay MCP Server

Connect any MCP-compatible AI agent (Claude Desktop, Claude Code, Cursor, and others) directly to your LazyRelay account — schedule posts, check analytics, and read comments without a browser.

This is a local server — it runs on your own machine and talks to LazyRelay's API using your own API key. There's no separate LazyRelay account or install step beyond this.

Setup

  • Get an API key from your LazyRelay dashboard: API Keys tab (always visible in the top nav) → Create key. Copy it immediately — it's shown once.
  • Add this to your MCP client's config (for Claude Desktop, that's claude_desktop_config.json):
{
  "mcpServers": {
    "lazyrelay": {
      "command": "npx",
      "args": ["-y", "@lazyrelay/mcp-server"],
      "env": {
        "LAZYRELAY_API_KEY": "lzr_live_your_key_here"
      }
    }
  }
}
  • Restart your MCP client. You should see LazyRelay's tools available.

Tools

ToolWhat it does
list_connected_accountsList your connected social accounts and their ids
list_workspacesList your brands/workspaces
schedule_postSchedule a post to one connected account
publish_post_nowPublish immediately instead of scheduling for later
update_postEdit a draft or still-pending post's content or media
list_scheduled_postsSee upcoming and recent posts, with status and Proof-of-Publish verification
delete_scheduled_postCancel a pending post
get_analytics_summaryPost counts, verified-live rate, per-platform breakdown, engagement totals
get_mentionsRecent comments on your posts, where the platform supports reading them

Every key acts as your account — treat it exactly like a password. Never share it or commit it to code.

Local development

npm install
npm run build
LAZYRELAY_API_KEY=lzr_live_... npm start

Prefer not to install anything?

LazyRelay also runs a hosted MCP server at https://lazyrelaylazyrelay-backend.onrender.com/mcp. Same 6 tools, but you sign in with your LazyRelay account instead of using an API key, nothing to run locally. In Claude, that's Settings → Connectors → Add connector → Remote, then paste the URL. For MCP clients that use a config file instead:

{
  "mcpServers": {
    "lazyrelay": {
      "url": "https://lazyrelaylazyrelay-backend.onrender.com/mcp"
    }
  }
}

Full docs, including how to revoke access to a connected app later, are at lazyrelay.com/docs.

FAQs

Package last updated on 10 Sep 2026

Related posts