eWeWasl Docs

Cursor

Connect Cursor to eWasl via MCP — schedule and publish posts from your editor chat.

Cursor speaks HTTP MCP natively, so no bridge is needed.

Prerequisites

Configure

In Cursor, open Settings → Features → Model Context Protocol → Add MCP Server and paste:

{
  "name": "ewasl",
  "url": "https://app.ewasl.com/api/mcp",
  "headers": {
    "Authorization": "Bearer ewasl_YOUR_KEY_HERE"
  }
}

Save. Cursor will list ewasl under available MCP servers.

Use

Open Cursor's chat (⌘L on macOS), enable Composer, and try:

Use ewasl to schedule a LinkedIn post for tomorrow at 9am announcing our new feature: "<feature description>".

Cursor will call the schedule_post tool with the right arguments.

Pin the API key in env, not the config

For shared repos, store the key in a Cursor environment variable and reference it as ${env:EWASL_API_KEY} in the MCP config so it never lands in .cursor/ checked into git.

On this page