AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Agentmailbox Cursor

skill-ragavrida-agentsmcp-cursor · by RagavRida

>

No reviews yet
0 installs
23 views
0.0% view→install

Install

$ agentstack add skill-ragavrida-agentsmcp-cursor

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-ragavrida-agentsmcp-cursor)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
24d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Agentmailbox Cursor? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

AgentMailbox — Context Sync for Cursor

Your context follows you. Not the tool.

AgentMailbox gives Cursor persistent memory across Composer sessions, tools, and restarts. When a session starts, check your mailbox and pick up exactly where the last session left off — including context from Claude Desktop, Antigravity, Continue, or any other MCP-aware tool.

Setup in Cursor

1. Add MCP Server

Go to Cursor Settings → MCP and add:

{
  "mcpServers": {
    "agentsmcp": {
      "command": "npx",
      "args": ["-y", "agentsmcp-adapter"],
      "env": {
        "AGENTSMCP_AGENT_ID": "cursor@local",
        "AGENTSMCP_SERVER": "http://localhost:3000"
      }
    }
  }
}

For the public demo server (no self-hosting required):

{
  "env": {
    "AGENTSMCP_SERVER": "https://hdnxa5c8yr.us-east-1.awsapprunner.com"
  }
}

2. Install Rules (Optional)

Copy the rules file to your project for always-on context sync:

mkdir -p .cursor/rules
cp skills/cursor/rules/agentmailbox.mdc .cursor/rules/

3. Start the Server (Self-Hosted)

npx agentsmcp-server

Workflows for Cursor

Session Start — Restore Context

When opening a project or starting a new Composer session:

Tool: agentsmcp_receive

This returns the full context frame:

  • snapshot — Last sender's state
  • threadSummaryStructured — Decisions, open questions, artifacts from the thread
  • recentMessages — Last 10 messages verbatim

Summarize for the user: "You were working on [X]. Open questions: [Y]."

Composer Multi-File Edits

Before starting a multi-file edit in Composer, sync the relevant thread:

Tool: agentsmcp_sync
Arguments: { "threadId": "" }

After completing the edit, record what changed:

Tool: agentsmcp_send
Arguments:
  to: "cursor@local"
  body: {
    "composerEdit": "Refactored auth module",
    "filesChanged": ["src/auth.ts", "src/middleware.ts", "tests/auth.test.ts"],
    "decisions": ["Using JWT with 24h expiry", "Middleware validates on every route"],
    "status": "complete"
  }

Cross-Platform Handoff

When the user mentions switching to another tool:

Tool: agentsmcp_send
Arguments:
  to: "claude@local"
  body: {
    "handoff": "Continuing auth work",
    "currentState": "JWT middleware implemented, tests passing",
    "remainingTasks": ["Token refresh endpoint", "Rate limiting"],
    "context": "See thread for full history"
  }

MCP Tool Reference

| Tool | Purpose | |:-----|:--------| | agentsmcp_receive | Get unread messages with full context | | agentsmcp_send | Send a message, create or continue a thread | | agentsmcp_sync | Rejoin a thread with assembled context | | agentsmcp_threads | List all threads for this agent | | agentsmcp_mark_read | Mark a thread as read | | agentsmcp_reply_all | Reply to all visible participants | | agentsmcp_unread | List unread context frames | | agentsmcp_participants | List participants with roles (to/cc/bcc) |

Links

  • GitHub: https://github.com/RagavRida/agentsmcp
  • npm: https://www.npmjs.com/package/agentsmcp
  • MCP Adapter: https://www.npmjs.com/package/agentsmcp-adapter

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.