Install
$ agentstack add skill-ragavrida-agentsmcp-cursor ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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.
- Author: RagavRida
- Source: RagavRida/agentsmcp
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.